interface ScanOnePageOptions {
    consistentRead?: boolean;
    exclusiveStartKey?: DynamoDBValues;
    limit?: number;
}

Properties

consistentRead?: boolean

Determines the read consistency model: If set to true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.

exclusiveStartKey?: DynamoDBValues

The key of the first item to read

DynamoDB's default, which is start at first item
limit?: number

Max number of items to read

DynamoDB's default which is no limit set, but a maximum of 1MB of data