Skip to content

Instantly share code, notes, and snippets.

@akiltipu
Created July 12, 2023 06:35
Show Gist options
  • Save akiltipu/9651d5297e7b6f81fb036429a5fb3e66 to your computer and use it in GitHub Desktop.
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.
{
"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