Amazon DynamoDB · Schema

SSESpecification

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
Enabled boolean Indicates whether server-side encryption is enabled
SSEType string Server-side encryption type
KMSMasterKeyId string The KMS key that should be used for server-side encryption
View JSON Schema on GitHub

JSON Schema

dynamodb-sse-specification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SSESpecification",
  "type": "object",
  "properties": {
    "Enabled": {
      "type": "boolean",
      "description": "Indicates whether server-side encryption is enabled"
    },
    "SSEType": {
      "type": "string",
      "description": "Server-side encryption type"
    },
    "KMSMasterKeyId": {
      "type": "string",
      "description": "The KMS key that should be used for server-side encryption"
    }
  }
}