You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Determines the read consistency model: If set to true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.
* fetch all entries and return the raw response (without parsing the attributes to js objects)
49
63
* @param backoffTimer when unprocessed keys are returned the next value of backoffTimer is used to determine how many time slots to wait before doing the next request
@@ -64,7 +78,7 @@ export class BatchGetSingleTableRequest<T> extends BaseRequest<
@@ -75,18 +89,18 @@ export class BatchGetSingleTableRequest<T> extends BaseRequest<
75
89
* @param backoffTimer when unprocessed keys are returned the next value of backoffTimer is used to determine how many time slots to wait before doing the next request
76
90
* @param throttleTimeSlot the duration of a time slot in ms
Copy file name to clipboardExpand all lines: src/dynamo/request/batchgetsingletable/batch-get-single-table.response.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ import * as DynamoDB from 'aws-sdk/clients/dynamodb'
8
8
*/
9
9
exportinterfaceBatchGetSingleTableResponse<T>{
10
10
/**
11
-
* A map of table name to a list of items. Each object in Responses consists of a table name, along with a map of attribute data consisting of the data type and attribute value.
11
+
* A map of table name to a list of items. Each object in Responses consists of a table name, along with a map of attribute data consisting of the data type and attribute value, as specified by ProjectionExpression.
0 commit comments