batchGetItem
Spec
async batchGetItem(
tnmInput: TynamoBatchGetItemInput<TSource>
): Promise<TynamoBatchGetItemOutput<TSource>>Input
export interface TynamoBatchGetItemInput<TSource> {
RequestItems: Partial<TSource>[];
// Derived from DynamoDB.
ReturnConsumedCapacity?: ReturnConsumedCapacity;
ConsistentRead?: ConsistentRead;
ProjectionExpression?: ProjectionExpression;
ExpressionAttributeNames?: ExpressionAttributeNameMap;
}Name
Type
Info
RequestItems
Partial<@DynamoEntity>[]
Primary key of item to read.
Output
Name
Type
Info
Responses
@DynamoEntity[]
Result of batchGet operation.
UnprocessedKeys
Partial<@DynamoEntity>[]
Primary key of failed item.
Example
Last updated
Was this helpful?