{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-bucket-server-side-encryption-schema.json", "title": "BucketServerSideEncryption", "description": "Provides information about the default server-side encryption settings for an S3 bucket. For detailed information about these settings, see Setting default server-side encryption behavior for Amazon S3 buckets in the Amazon Simple Storage Service User Guide.", "type": "object", "properties": { "kmsMasterKeyId": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The Amazon Resource Name (ARN) or unique identifier (key ID) for the KMS key that's used by default to encrypt objects that are added to the bucket. This value is null if the bucket is configured to use an Amazon S3 managed key to encrypt new objects." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/Type" }, { "description": "

The server-side encryption algorithm that's used by default to encrypt objects that are added to the bucket. Possible values are:

" } ] } } }