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