Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
An IAM policy that allows users to view reserved capacity offerings and current purchases using the AWS Management Console—but new purchases are denied. This policy provides the permissions necessary to complete this action using the AWS Console or AWS API/AWS CLI.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"dynamodb:DescribeReservedCapacity",
"dynamodb:DescribeReservedCapacityOfferings"
],
"Resource": [
"arn:aws:dynamodb:::*"
],
"Effect": "Allow"
},
{
"Action": [
"dynamodb:PurchaseReservedCapacityOfferings"
],
"Resource": [
"arn:aws:dynamodb:::*"
],
"Effect": "Deny"
}
]
}