UNPKG

@aws-sdk/client-dynamodb

Version:

AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native

20 lines (19 loc) 778 B
import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; import { commonParams } from "../endpoint/EndpointParameters"; import { DescribeGlobalTableSettings$ } from "../schemas/schemas_0"; export { $Command }; export class DescribeGlobalTableSettingsCommand extends $Command .classBuilder() .ep({ ...commonParams, ResourceArn: { type: "contextParams", name: "GlobalTableName" }, }) .m(function (Command, cs, config, o) { return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())]; }) .s("DynamoDB_20120810", "DescribeGlobalTableSettings", {}) .n("DynamoDBClient", "DescribeGlobalTableSettingsCommand") .sc(DescribeGlobalTableSettings$) .build() { }