@aws-sdk/client-dynamodb
Version:
AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native
41 lines (40 loc) • 1.31 kB
TypeScript
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { ImportTableInput, ImportTableOutput } from "../models/models_0";
export { __MetadataBearer };
export interface ImportTableCommandInput extends ImportTableInput {}
export interface ImportTableCommandOutput
extends ImportTableOutput,
__MetadataBearer {}
declare const ImportTableCommand_base: {
new (
input: ImportTableCommandInput
): import("@smithy/core/client").CommandImpl<
ImportTableCommandInput,
ImportTableCommandOutput,
import("..").DynamoDBClientResolvedConfig,
import("..").ServiceInputTypes,
import("..").ServiceOutputTypes
>;
new (
input: ImportTableCommandInput
): import("@smithy/core/client").CommandImpl<
ImportTableCommandInput,
ImportTableCommandOutput,
import("..").DynamoDBClientResolvedConfig,
import("..").ServiceInputTypes,
import("..").ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
};
export declare class ImportTableCommand extends ImportTableCommand_base {
protected static __types: {
api: {
input: ImportTableInput;
output: ImportTableOutput;
};
sdk: {
input: ImportTableCommandInput;
output: ImportTableCommandOutput;
};
};
}