Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
560 views
in Technique[技术] by (71.8m points)

amazon web services - 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

question from:https://stackoverflow.com/questions/65941445/how-to-get-s3-object-url-after-its-been-uploaded-to-a-bucket-using-aws-cli

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...