Amazon DynamoDB · Schema

Projection

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
ProjectionType string The set of attributes that are projected into the index
NonKeyAttributes array List of non-key attribute names that are projected into the index
View JSON Schema on GitHub

JSON Schema

dynamodb-projection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Projection",
  "type": "object",
  "properties": {
    "ProjectionType": {
      "type": "string",
      "description": "The set of attributes that are projected into the index"
    },
    "NonKeyAttributes": {
      "type": "array",
      "description": "List of non-key attribute names that are projected into the index"
    }
  }
}