You must be logged in to view saved presets
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"
}
]
}