Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
A DynamoDB endpoint policy that restricts access through the endpoint to the specified DynamoDB table
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"dynamodb:Batch*",
"dynamodb:Delete*",
"dynamodb:DescribeTable",
"dynamodb:GetItem",
"dynamodb:PutItem",
"dynamodb:Update*"
],
"Principal": "*",
"Resource": [
"arn:aws:dynamodb:::table/"
],
"Effect": "Allow"
}
]
}