You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create PUT presigned_urls` in order to send them to the client and client makes the upload to my S3 bucket.
My S3 is configured to send PutObejct events to an SQS. Then, I need to get the checksum of uploaded file in order to store the checksum into my database.
I'm trying to create a put presigned_url with this code:
As you can see, a x-amz-sdk-checksum-algorithm parameter is appended.
When I make the PUT using generated presigned_url everything seems to work, but when I'm trying to get object attributes, I'm not getting any ChecksumSHA256:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to create
PUT
presigned_urls` in order to send them to the client and client makes the upload to my S3 bucket.My S3 is configured to send
PutObejct
events to anSQS
. Then, I need to get the checksum of uploaded file in order to store the checksum into my database.I'm trying to create a put
presigned_url
with this code:The generated url sample is like:
As you can see, a
x-amz-sdk-checksum-algorithm
parameter is appended.When I make the PUT using generated presigned_url everything seems to work, but when I'm trying to get object attributes, I'm not getting any
ChecksumSHA256
:I'm trying to simulate this behavior using
cli
:Also, I'm able to get object attributes like:
Isn't it able to set a checksum algorithm on presigned PUT url?
Beta Was this translation helpful? Give feedback.
All reactions