dynamodb:Query

Read

dynamodb:Query is a Read access-level action in the dynamodb service. Grants permission to use the primary key of a table or a secondary index to directly access items from that table or index

Resource types

ARNs that dynamodb:Query can be scoped to in an IAM policy.

arn:${Partition}:dynamodb:${Region}:${Account}:table/${TableName}
table
arn:${Partition}:dynamodb:${Region}:${Account}:table/${TableName}/index/${IndexName}
index

Condition keys

Keys you can use in the Condition block of a policy that grants dynamodb:Query.

aws:ResourceTag/${TagKey} String

Filters access by the tags associated with the resource

Example IAM policy

A minimal policy that allows dynamodb:Query. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowDynamodbQuery",
      "Effect": "Allow",
      "Action": "dynamodb:Query",
      "Resource": "*"
    }
  ]
}

Related actions in dynamodb

View all dynamodb actions →