UNPKG

@aws-sdk/client-dynamodb

Version:

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

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