interface DynamoReadCommandInput
extends DynamoExpressionAttributes
Shared fields for a DynamoDB query or scan.
readonly
TableName: string
The physical table to read.
readonly
optional
Limit: number
The maximum number of evaluated items.
readonly
optional
ExclusiveStartKey: DynamoAttributeMap
The server continuation key from the preceding response.
readonly
optional
ProjectionExpression: string
A projection expression for selected attributes.
readonly
optional
FilterExpression: string
A post-read filter expression.
readonly
optional
Select: "ALL_ATTRIBUTES"
| "ALL_PROJECTED_ATTRIBUTES"
| "COUNT"
| "SPECIFIC_ATTRIBUTES"
The response shape requested from DynamoDB.