{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-qldb/refs/heads/main/json-schema/amazon-qldb-ledger-encryption-description-schema.json", "title": "LedgerEncryptionDescription", "description": "

Information about the encryption of data at rest in an Amazon QLDB ledger. This includes the current status, the key in Key Management Service (KMS), and when the key became inaccessible (in the case of an error).

For more information, see Encryption at rest in the Amazon QLDB Developer Guide.

", "type": "object", "properties": { "KmsKeyArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the customer managed KMS key that the ledger uses for encryption at rest. If this parameter is undefined, the ledger uses an Amazon Web Services owned KMS key for encryption." } ] }, "EncryptionStatus": { "allOf": [ { "$ref": "#/components/schemas/EncryptionStatus" }, { "description": "

The current state of encryption at rest for the ledger. This can be one of the following values:

" } ] }, "InaccessibleKmsKeyDateTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "

The date and time, in epoch time format, when the KMS key first became inaccessible, in the case of an error. (Epoch time format is the number of seconds that have elapsed since 12:00:00 AM January 1, 1970 UTC.)

This parameter is undefined if the KMS key is accessible.

" } ] } }, "required": [ "KmsKeyArn", "EncryptionStatus" ] }