interface DynamoReadCommandInput

Shared fields for a DynamoDB query or scan.

Properties

readonly
TableName: string

The physical table to read.

readonly
optional
Limit: number

The maximum number of evaluated items.

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.

Usage

import { type DynamoReadCommandInput } from "database-plugin/src/index.ts";