简体   繁体   中英

How to get S3 object url after it's been uploaded to a bucket using aws cli?

I have a file which needs to be uploaded to an s3 bucket which has public read access.

I need to use that s3 object's url somewhere else after uploading the file.

How do I get the url of the s3 object after it's been uploaded to the bucket?

I'm using aws-cli to upload the file:

aws s3 cp local_file s3_location

I'm looking probably for something like https://s3_bucket-region.amazonaws.com/folder/filename.format

You can construct the URL Path-style access , you have all the information.

https://bucket-name.s3.Region.amazonaws.com/key name

In this example, my-bucket is the bucket name, US West (Oregon) is the Region, and puppy.png is the key name

https://my-bucket.s3.us-west-2.amazonaws.com/puppy.png

NOTE : path-style URLs style will be deprecated soon.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM