Amazon DynamoDB · Schema

ListTablesInput

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
ExclusiveStartTableName string The first table name that this operation will evaluate. Use the value returned for LastEvaluatedTableName in a previous operation.
Limit integer Maximum number of table names to return (1-100)
View JSON Schema on GitHub

JSON Schema

dynamodb-list-tables-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListTablesInput",
  "type": "object",
  "properties": {
    "ExclusiveStartTableName": {
      "type": "string",
      "description": "The first table name that this operation will evaluate. Use the value returned for LastEvaluatedTableName in a previous operation."
    },
    "Limit": {
      "type": "integer",
      "description": "Maximum number of table names to return (1-100)"
    }
  }
}