Skip to content

TableBatchGetConfig

type TableBatchGetConfig<Gets> = BaseConfig & object;

Configuration for the TableBatchGet command.

optional consistent: boolean;

If set, overrides the consistent setting on all individual prepared groups. When true, DynamoDB will use strongly consistent reads for all entity groups. When false, DynamoDB will use eventually consistent reads for all entity groups. When not set, the command falls back to the per-group consistent setting (any group with consistent: true makes the entire request consistent).

gets: [...Gets];

Gets extends PreparedBatchGet<any>[]

Tuple of PreparedBatchGet types, one per entity group.