Amazon DynamoDB · Schema

StreamSpecification

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
StreamEnabled boolean Indicates whether DynamoDB Streams is enabled on the table
StreamViewType string Determines the information written to the stream for this table
View JSON Schema on GitHub

JSON Schema

dynamodb-stream-specification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StreamSpecification",
  "type": "object",
  "properties": {
    "StreamEnabled": {
      "type": "boolean",
      "description": "Indicates whether DynamoDB Streams is enabled on the table"
    },
    "StreamViewType": {
      "type": "string",
      "description": "Determines the information written to the stream for this table"
    }
  }
}