Created
November 26, 2019 18:27
-
-
Save chrisking/d2c02960e2c7c77908400652b182d02f to your computer and use it in GitHub Desktop.
sample bucket policy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Version": "2012-10-17", | |
| "Id": "PersonalizeS3BucketAccessPolicy", | |
| "Statement": [ | |
| { | |
| "Sid": "PersonalizeS3BucketAccessPolicy", | |
| "Effect": "Allow", | |
| "Principal": { | |
| "Service": "personalize.amazonaws.com" | |
| }, | |
| "Action": [ | |
| "s3:*Object", | |
| "s3:ListBucket" | |
| ], | |
| "Resource": [ | |
| "arn:aws:s3:::059124553121reinventforecastworkshop", | |
| "arn:aws:s3:::059124553121reinventforecastworkshop/*" | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment