2 Answers
- Newest
- Most votes
- Most comments
1
Hi,
Your command would be either of the two mentioned below:
aws s3 presign s3://yuzobasket/Practitioner.pdf --expires-in 3600 --region us-east-1
aws s3 presign yuzobasket/Practitioner.pdf --expires-in 3600 --region us-east-1
Change the region as required if the bucket is not in us-east-1.
--Syd
answered 2 years ago
1
Have a look at https://docs.aws.amazon.com/cli/latest/reference/s3/presign.html.
If you scroll to the bottom of the page you'll see some aws s3 presign examples
answered 2 years ago
Thank you! I will learn!
Relevant content
- asked 4 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 20 days ago
- AWS OFFICIALUpdated 4 years ago
Thank you! I made it fine accordingly.