| 2102 | } |
| 2103 | |
| 2104 | static Status UploadPartError(const Aws::S3::Model::UploadPartRequest& request, |
| 2105 | const Aws::S3::Model::UploadPartOutcome& outcome) { |
| 2106 | return ErrorToStatus( |
| 2107 | std::forward_as_tuple("When uploading part for key '", request.GetKey(), |
| 2108 | "' in bucket '", request.GetBucket(), "': "), |
| 2109 | "UploadPart", outcome.GetError()); |
| 2110 | } |
| 2111 | |
| 2112 | Status UploadPart(const void* data, int64_t nbytes, |
| 2113 | std::shared_ptr<Buffer> owned_buffer = nullptr) { |
nothing calls this directly
no test coverage detected