Amazon Macie · Schema

ObjectCountByEncryptionType

Provides information about the number of objects that are in an S3 bucket and use certain types of server-side encryption, use client-side encryption, or aren't encrypted.

Data SecuritySensitive DataPrivacyComplianceMachine-LearningS3

Properties

Name Type Description
customerManaged object
kmsManaged object
s3Managed object
unencrypted object
unknown object
View JSON Schema on GitHub

JSON Schema

amazon-macie-object-count-by-encryption-type-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-object-count-by-encryption-type-schema.json",
  "title": "ObjectCountByEncryptionType",
  "description": "Provides information about the number of objects that are in an S3 bucket and use certain types of server-side encryption, use client-side encryption, or aren't encrypted.",
  "type": "object",
  "properties": {
    "customerManaged": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of objects that are encrypted with a customer-provided key. The objects use customer-provided server-side encryption (SSE-C)."
        }
      ]
    },
    "kmsManaged": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of objects that are encrypted with an KMS key, either an Amazon Web Services managed key or a customer managed key. The objects use KMS encryption (SSE-KMS)."
        }
      ]
    },
    "s3Managed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of objects that are encrypted with an Amazon S3 managed key. The objects use Amazon S3 managed encryption (SSE-S3)."
        }
      ]
    },
    "unencrypted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of objects that use client-side encryption or aren't encrypted."
        }
      ]
    },
    "unknown": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of objects that Amazon Macie doesn't have current encryption metadata for. Macie can't provide current data about the encryption settings for these objects."
        }
      ]
    }
  }
}