Amazon DynamoDB · Schema

ListTablesOutput

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
TableNames array The names of the tables associated with the current account
LastEvaluatedTableName string The name of the last table in the current page of results. Use this value as ExclusiveStartTableName for the next request.
View JSON Schema on GitHub

JSON Schema

dynamodb-list-tables-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListTablesOutput",
  "type": "object",
  "properties": {
    "TableNames": {
      "type": "array",
      "description": "The names of the tables associated with the current account"
    },
    "LastEvaluatedTableName": {
      "type": "string",
      "description": "The name of the last table in the current page of results. Use this value as ExclusiveStartTableName for the next request."
    }
  }
}