{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-encryption-info-schema.json", "title": "EncryptionInfo", "description": "\n
Includes encryption-related information, such as the AWS KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.
", "type": "object", "properties": { "EncryptionAtRest": { "allOf": [ { "$ref": "#/components/schemas/EncryptionAtRest" }, { "xml": { "name": "encryptionAtRest" }, "description": "\nThe data-volume encryption details.
" } ] }, "EncryptionInTransit": { "allOf": [ { "$ref": "#/components/schemas/EncryptionInTransit" }, { "xml": { "name": "encryptionInTransit" }, "description": "\nThe details for encryption in transit.
" } ] } } }