Returns an array of table names associated with the current account and endpoint. The
output from ListTables is paginated, with each page returning a maximum of
100 table names.
example
Use a bare-bones client and the command you need to make an API call.
Returns an array of table names associated with the current account and endpoint. The output from
ListTables
is paginated, with each page returning a maximum of 100 table names.Use a bare-bones client and the command you need to make an API call.
import { DynamoDBClient, ListTablesCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import // const { DynamoDBClient, ListTablesCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import const client = new DynamoDBClient(config); const command = new ListTablesCommand(input); const response = await client.send(command);
ListTablesCommandInput for command's
input
shape.ListTablesCommandOutput for command's
response
shape.config for DynamoDBClient's
config
shape.