How to pass 'Content-MD5' to request header in Write-S3Object command (powershell)

0

Hello,

I'm looking for a way to pass to the request MD5 hash. I'm using "Write-S3Object" PowerShell command, and I want to upload file to S3 only if the MD5 checksum is valid. I calculate the MD5 checksum based on the following article: https://repost.aws/knowledge-center/data-integrity-s3

BR, Chris

cris
asked a year ago295 views
1 Answer
0

You can allow cmdlet to compute this itself, via the -CalculateContentMD5Header <Boolean> option, which will generate the header based on your content, and include this with the request. S3 will validate this header as part of the PutObject operation.

If you want to pass a manually or precomputed value, set the above to false and pass the header as a custom header.

 -HeaderCollection @{ 'Content-MD5' = 'asdfasdfasdfsa'}

Again, S3 will compare this to the uploaded object after receiving the content. If the MD5 does not match the value S3 computes for the received content, the upload will fail.

profile pictureAWS
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions