Issue:
If an S3MetaRequestType.PUT_OBJECT failed, you couldn't tell exactly which S3 operation failed. Was it PutObject? StartMultipartUpload? UploadPart? CompleteMultipartUpload?
Description of changes:
Expose S3 operation name in S3FinishedResponseContext
Add S3MetaRequestOptions.withOperationName(String), so users sending requests of type S3MetaRequestType.DEFAULT can pass the actual operation name through.
You SHOULD set this for DEFAULT requests. It will be required in the very near future
aws-lc: AWS-LC-FIPS-2.0.12 -> AWS-LC-FIPS-2.0.13
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Issue: If an
S3MetaRequestType.PUT_OBJECT
failed, you couldn't tell exactly which S3 operation failed. Was it PutObject? StartMultipartUpload? UploadPart? CompleteMultipartUpload?Description of changes:
S3FinishedResponseContext
S3MetaRequestOptions.withOperationName(String)
, so users sending requests of typeS3MetaRequestType.DEFAULT
can pass the actual operation name through.DEFAULT
requests. It will be required in the very near futureBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.