Skip to content

Instantly share code, notes, and snippets.

@chrisking
Created November 26, 2019 18:27
Show Gist options
  • Select an option

  • Save chrisking/d2c02960e2c7c77908400652b182d02f to your computer and use it in GitHub Desktop.

Select an option

Save chrisking/d2c02960e2c7c77908400652b182d02f to your computer and use it in GitHub Desktop.
sample bucket policy
{
"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