Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created September 8, 2021 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/7b07cf393802bdbf6b4a5f20b9600f7b to your computer and use it in GitHub Desktop.
Save velotiotech/7b07cf393802bdbf6b4a5f20b9600f7b to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"mobileanalytics:PutEvents",
"cognito-sync:*",
"cognito-identity:*"
],
"Resource": [
"*"
]
},
{
"Sid": "ListYourObjects",
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": [
"arn:aws:s3:::your-actual-photo-bucket-name"
],
"Condition": {
"StringLike": {
"s3:prefix": [
"${cognito-identity.amazonaws.com:sub}/",
"${cognito-identity.amazonaws.com:sub}/*"
]
}
}
},
{
"Sid": "ReadYourObjects",
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::your-actual-photo-bucket-name/${cognito-identity.amazonaws.com:sub}",
"arn:aws:s3:::your-actual-photo-bucket-name/${cognito-identity.amazonaws.com:sub}/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment