AWS S3 Access Point
AWS S3 Access Point
Whether creating an access point for data ingestion, transformation, restricted read access, or unrestricted
access, using S3 Access Points simplifies the work of creating and maintaining access to shared S3 buckets.
https://docs.aws.amazon.com/AmazonS3/latest/dev/creating-access-points.html
https://494438480755.signin.aws.amazon.com/console
Click Create access point. Enter a name for the access point. Select Internet.
{
"Version":"2008-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::494438480755:user/testUser"
},
"Action": ["s3:GetObject", "s3:PutObject"],
"Resource": "arn:aws:s3:us-east-1:494438480755:accesspoint/mis314access/object/testUser/*"
}]
}
Click
Then, click Use this access point
https://cmis341acess-494438480755.s3-accesspoint.us-east-1.amazonaws.com/
As a comparison and a review, the following example/exercise (1) creates a policy to allow access to mis341
bucket and (2) attaches the policy to testUser, allowing testUser to access mis341 bucket.
In AWS Console Management, go to IAM and click Policies. Then, click Create policy.
Click
To find the ARN for a bucket, click the bucket to bring up the pop-up property window.
Click Copy Bucket ARN
Click Any
Sign on as IAM user testUser to verify that the user can access mis341 bucket.