Specifies the Encryption At Rest Options.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-encryption-at-rest-options-schema.json", "title": "EncryptionAtRestOptions", "description": "Specifies the Encryption At Rest Options.", "type": "object", "properties": { "Enabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Specifies the option to enable Encryption At Rest." } ] }, "KmsKeyId": { "allOf": [ { "$ref": "#/components/schemas/KmsKeyId" }, { "description": " Specifies the KMS Key ID for Encryption At Rest options." } ] } } }