dynamodb:PartiQLInsert is a Write access-level action in the dynamodb service. Grants permission to create a new item, if an item with same primary key does not exist in the table
ARNs that dynamodb:PartiQLInsert can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants dynamodb:PartiQLInsert.
Filters access by the tags associated with the resource
A minimal policy that allows dynamodb:PartiQLInsert. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowDynamodbPartiQLInsert",
"Effect": "Allow",
"Action": "dynamodb:PartiQLInsert",
"Resource": "*"
}
]
}