Created
July 12, 2023 06:35
-
-
Save akiltipu/9651d5297e7b6f81fb036429a5fb3e66 to your computer and use it in GitHub Desktop.
IAM Execution Role Policy of DynamoDB for building End-to-End Web Application with AWS tutorial.
This file contains 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": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"dynamodb:PutItem", | |
"dynamodb:DeleteItem", | |
"dynamodb:GetItem", | |
"dynamodb:Scan", | |
"dynamodb:Query", | |
"dynamodb:UpdateItem" | |
], | |
"Resource": "YOUR-TABLE-ARN" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment