Created
December 1, 2018 11:51
-
-
Save mlabouardy/2941eae0c0a638e57773ec7c17a8ddb1 to your computer and use it in GitHub Desktop.
IAM policy to invoke Scan operation on DynamoDB table
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", | |
| "Statement": [ | |
| { | |
| "Sid": "1", | |
| "Effect": "Allow", | |
| "Action": "dynamodb:Scan", | |
| "Resource": [ | |
| "arn:aws:dynamodb:eu-west-3:*:table/movies", | |
| "arn:aws:dynamodb:eu-west-3:*:table/movies/index/*" | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment