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