Amazon DynamoDB · Schema

GlobalSecondaryIndex

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
IndexName string The name of the global secondary index
KeySchema array The key schema for the global secondary index
View JSON Schema on GitHub

JSON Schema

dynamodb-global-secondary-index-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GlobalSecondaryIndex",
  "type": "object",
  "properties": {
    "IndexName": {
      "type": "string",
      "description": "The name of the global secondary index"
    },
    "KeySchema": {
      "type": "array",
      "description": "The key schema for the global secondary index"
    }
  }
}