Amazon Macie · Schema

ServerSideEncryption

Provides information about the default server-side encryption settings for an S3 bucket or the encryption settings for an S3 object.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
encryptionType object
kmsMasterKeyId object
View JSON Schema on GitHub

JSON Schema

amazon-macie-server-side-encryption-schema.json Raw ↑
{
  "$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-server-side-encryption-schema.json",
  "title": "ServerSideEncryption",
  "description": "Provides information about the default server-side encryption settings for an S3 bucket or the encryption settings for an S3 object.",
  "type": "object",
  "properties": {
    "encryptionType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EncryptionType"
        },
        {
          "description": "The server-side encryption algorithm that's used when storing data in the bucket or object. If default encryption settings aren't configured for the bucket or the object isn't encrypted using server-side encryption, this value is NONE."
        }
      ]
    },
    "kmsMasterKeyId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Resource Name (ARN) or unique identifier (key ID) for the KMS key that's used to encrypt data in the bucket or the object. This value is null if an KMS key isn't used to encrypt the data."
        }
      ]
    }
  }
}