UNPKG

@aws-sdk/client-dynamodb

Version:

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

23 lines (22 loc) 1.31 kB
import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { ListTablesInput, ListTablesOutput } from "../models/models_0"; import { Command as $Command } from "@aws-sdk/smithy-client"; import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types"; export declare type ListTablesCommandInput = ListTablesInput; export declare type ListTablesCommandOutput = ListTablesOutput & __MetadataBearer; /** * <p>Returns an array of table names associated with the current account and endpoint. The output * from <code>ListTables</code> is paginated, with each page returning a maximum of 100 table * names.</p> */ export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, DynamoDBClientResolvedConfig> { readonly input: ListTablesCommandInput; private resolved; constructor(input: ListTablesCommandInput); /** * @internal */ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>; private serialize; private deserialize; }