Amazon DynamoDB · Schema

UpdateTableInput

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
TableName string The name of the table to update
AttributeDefinitions array
BillingMode string
GlobalSecondaryIndexUpdates array
TableClass string
DeletionProtectionEnabled boolean
View JSON Schema on GitHub

JSON Schema

dynamodb-update-table-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateTableInput",
  "type": "object",
  "properties": {
    "TableName": {
      "type": "string",
      "description": "The name of the table to update"
    },
    "AttributeDefinitions": {
      "type": "array"
    },
    "BillingMode": {
      "type": "string"
    },
    "GlobalSecondaryIndexUpdates": {
      "type": "array"
    },
    "TableClass": {
      "type": "string"
    },
    "DeletionProtectionEnabled": {
      "type": "boolean"
    }
  }
}