@aws-sdk/client-dynamodb
Version:
AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native
20 lines (19 loc) • 747 B
JavaScript
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
import { Command as $Command } from "@smithy/smithy-client";
import { commonParams } from "../endpoint/EndpointParameters";
import { BatchGetItem$ } from "../schemas/schemas_0";
export { $Command };
export class BatchGetItemCommand extends $Command
.classBuilder()
.ep({
...commonParams,
ResourceArnList: { type: "operationContextParams", get: (input) => Object.keys(input?.RequestItems ?? {}) },
})
.m(function (Command, cs, config, o) {
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
})
.s("DynamoDB_20120810", "BatchGetItem", {})
.n("DynamoDBClient", "BatchGetItemCommand")
.sc(BatchGetItem$)
.build() {
}