dynamodb:TagResource is a Tagging access-level action in the dynamodb service. Grants permission to associate a set of tags with an Amazon DynamoDB resource
ARNs that dynamodb:TagResource can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants dynamodb:TagResource.
Filters access by the tags associated with the resource
A minimal policy that allows dynamodb:TagResource. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowDynamodbTagResource",
"Effect": "Allow",
"Action": "dynamodb:TagResource",
"Resource": "*"
}
]
}