interface QueryAllOptions {
    consistentRead?: boolean;
    scanIndexForward?: boolean;
}

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.

scanIndexForward?: boolean

Whether to return results in ascending order

DynamoDB's default which is true