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
@@ -39,11 +40,31 @@ export class BatchGetSingleTableRequest<T> extends BaseRequest<
39
40
}
40
41
}
41
42
43
+
/**
44
+
* 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
70
* @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
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.
Copy file name to clipboardExpand all lines: src/dynamo/request/query/query.response.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import * as DynamoDB from 'aws-sdk/clients/dynamodb'
9
9
*/
10
10
exportinterfaceQueryResponse<T>{
11
11
/**
12
-
* An array of item attributes that match the query criteria. Each element in this array consists of an attribute name and the value for that attribute.
12
+
* An array of item attributes that match the query criteria. Each element in this array consists of an attribute name and the value for that attribute, as specified by ProjectionExpression.
Copy file name to clipboardExpand all lines: src/dynamo/request/scan/scan.response.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ import * as DynamoDB from 'aws-sdk/clients/dynamodb'
5
5
6
6
exportinterfaceScanResponse<T>{
7
7
/**
8
-
* An array of item attributes that match the scan criteria. Each element in this array consists of an attribute name and the value for that attribute.
8
+
* An array of item attributes that match the scan criteria. Each element in this array consists of an attribute name and the value for that attribute, as specified by ProjectionExpression.
0 commit comments