@aws-sdk/lib-dynamodb
TransactGetCommand Class
Accepts native JavaScript types instead of
AttributeValue
s, and calls TransactGetItemsCommand operation from @aws-sdk/client-dynamodb#TransactGetItemsCommand.JavaScript objects passed in as parameters are marshalled into AttributeValue
shapes required by Amazon DynamoDB. Responses from DynamoDB are unmarshalled into plain JavaScript objects.Members
Name | Type | Details |
---|---|---|
(constructor) Required | constructor(input: TransactGetCommandInput) | Constructs a new instance of the TransactGetCommand class |
addMarshallingMiddleware Required | protected addMarshallingMiddleware(configuration: DynamoDBDocumentClientResolvedConfig): void | |
clientCommand Required | __TransactGetItemsCommand | |
input Required | TransactGetCommandInput | |
inputKeyNodes Required | {
TransactItems: {
"*": {
Get: {
Key: import("../commands/utils").KeyNodeChildren
};
};
};
} | |
middlewareStack Required | MiddlewareStack<TransactGetCommandInput | __TransactGetItemsCommandInput, TransactGetCommandOutput | __TransactGetItemsCommandOutput> | |
outputKeyNodes Required | {
Responses: {
"*": {
Item: import("../commands/utils").KeyNodeChildren
};
};
} | |
resolveMiddleware Required | abstract resolveMiddleware(stack: IMiddlewareStack<ClientInput, ClientOutput>, configuration: ResolvedClientConfiguration, options: any): Handler<Input, Output> |
Full Signature
export declare class TransactGetCommand extends DynamoDBDocumentClientCommand<TransactGetCommandInput, TransactGetCommandOutput, __TransactGetItemsCommandInput, __TransactGetItemsCommandOutput, DynamoDBDocumentClientResolvedConfig>