| 2043 | } |
| 2044 | |
| 2045 | static Status UploadPartError(const Aws::S3::Model::UploadPartRequest& request, |
| 2046 | const Aws::S3::Model::UploadPartOutcome& outcome) { |
| 2047 | return ErrorToStatus( |
| 2048 | std::forward_as_tuple("When uploading part for key '", request.GetKey(), |
| 2049 | "' in bucket '", request.GetBucket(), "': "), |
| 2050 | "UploadPart", outcome.GetError()); |
| 2051 | } |
| 2052 | |
| 2053 | Status UploadPart(const void* data, int64_t nbytes, |
| 2054 | std::shared_ptr<Buffer> owned_buffer = nullptr) { |
nothing calls this directly
no test coverage detected