Serialize CRT HTTP requests. :type transfer_type: string :param transfer_type: the type of transfer made, e.g 'put_object', 'get_object', 'delete_object' :type future: s3transfer.crt.CRTTransferFuture :rtype: awscrt.http.HttpRequest :returns: An
(self, transfer_type, future)
| 422 | |
| 423 | class BaseCRTRequestSerializer: |
| 424 | def serialize_http_request(self, transfer_type, future): |
| 425 | """Serialize CRT HTTP requests. |
| 426 | |
| 427 | :type transfer_type: string |
| 428 | :param transfer_type: the type of transfer made, |
| 429 | e.g 'put_object', 'get_object', 'delete_object' |
| 430 | |
| 431 | :type future: s3transfer.crt.CRTTransferFuture |
| 432 | |
| 433 | :rtype: awscrt.http.HttpRequest |
| 434 | :returns: An unsigned HTTP request to be used for the CRT S3 client |
| 435 | """ |
| 436 | raise NotImplementedError('serialize_http_request()') |
| 437 | |
| 438 | def translate_crt_exception(self, exception): |
| 439 | raise NotImplementedError('translate_crt_exception()') |
no outgoing calls
no test coverage detected