Amazon DynamoDB · Schema

LocalSecondaryIndex

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

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

JSON Schema

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