@aws-sdk/client-dynamodb
Version:
AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native
52 lines (51 loc) • 1.72 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
DynamoDBClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../DynamoDBClient";
import {
RestoreTableToPointInTimeInput,
RestoreTableToPointInTimeOutput,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface RestoreTableToPointInTimeCommandInput
extends RestoreTableToPointInTimeInput {}
export interface RestoreTableToPointInTimeCommandOutput
extends RestoreTableToPointInTimeOutput,
__MetadataBearer {}
declare const RestoreTableToPointInTimeCommand_base: {
new (
input: RestoreTableToPointInTimeCommandInput
): import("@smithy/smithy-client").CommandImpl<
RestoreTableToPointInTimeCommandInput,
RestoreTableToPointInTimeCommandOutput,
DynamoDBClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: RestoreTableToPointInTimeCommandInput
): import("@smithy/smithy-client").CommandImpl<
RestoreTableToPointInTimeCommandInput,
RestoreTableToPointInTimeCommandOutput,
DynamoDBClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class RestoreTableToPointInTimeCommand extends RestoreTableToPointInTimeCommand_base {
protected static __types: {
api: {
input: RestoreTableToPointInTimeInput;
output: RestoreTableToPointInTimeOutput;
};
sdk: {
input: RestoreTableToPointInTimeCommandInput;
output: RestoreTableToPointInTimeCommandOutput;
};
};
}