AWS General

satya - 5/5/2019, 8:42:22 PM

How can I see a URL for an S3 location in AWS?

How can I see a URL for an S3 location in AWS?

Search for: How can I see a URL for an S3 location in AWS?

satya - 5/5/2019, 8:43:59 PM

Example S3 location URLs

Example S3 location URLs

Search for: Example S3 location URLs

satya - 5/5/2019, 8:45:00 PM

How do you specify a filename in Aws S3?

How do you specify a filename in Aws S3?

Search for: How do you specify a filename in Aws S3?

satya - 5/5/2019, 8:45:50 PM

How do you specify an S3 AWS path?

How do you specify an S3 AWS path?

Search for: How do you specify an S3 AWS path?

satya - 5/5/2019, 8:47:15 PM

what is the aws S3 path specification look like?

what is the aws S3 path specification look like?

Search for: what is the aws S3 path specification look like?

satya - 5/5/2019, 8:48:53 PM

The core concepts from Aws

The core concepts from Aws

satya - 5/5/2019, 8:49:45 PM

Addressing

A bucket is a container for objects stored in Amazon S3. Every object is contained in a bucket. For example, if the object named photos/puppy.jpg is stored in the johnsmith bucket, then it is addressable using the URL http://johnsmith.s3.amazonaws.com/photos/puppy.jpg

satya - 5/5/2019, 8:56:25 PM

Here is an example I see


s3://((buket-name))/sub-dir/filename

satya - 5/5/2019, 8:56:38 PM

what does an aws S3 location look like?

what does an aws S3 location look like?

Search for: what does an aws S3 location look like?

satya - 5/5/2019, 9:01:43 PM

This seem to be documented here: as part of CLI command reference

This seem to be documented here: as part of CLI command reference

satya - 5/5/2019, 9:03:36 PM

Path: it says

S3Uri: represents the location of a S3 object, prefix, or bucket. This must be written in the form s3://mybucket/mykey where mybucket is the specified S3 bucket, mykey is the specified S3 key. The path argument must begin with s3:// in order to denote that the path argument refers to a S3 object. Note that prefixes are separated by forward slashes. For example, if the S3 object myobject had the prefix myprefix, the S3 key would be myprefix/myobject, and if the object was in the bucket mybucket, the S3Uri would be s3://mybucket/myprefix/myobject.