@aws-sdk/client-dynamodb
Version:
AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native
20 lines (19 loc) • 692 B
JavaScript
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
import { Command as $Command } from "@smithy/smithy-client";
import { commonParams } from "../endpoint/EndpointParameters";
import { CreateTable$ } from "../schemas/schemas_0";
export { $Command };
export class CreateTableCommand extends $Command
.classBuilder()
.ep({
...commonParams,
ResourceArn: { type: "contextParams", name: "TableName" },
})
.m(function (Command, cs, config, o) {
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
})
.s("DynamoDB_20120810", "CreateTable", {})
.n("DynamoDBClient", "CreateTableCommand")
.sc(CreateTable$)
.build() {
}