Amazon Macie · JSON Structure

Amazon Macie Object Count By Encryption Type Structure

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: 5
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

ObjectCountByEncryptionType is a JSON Structure definition published by Amazon Macie, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

customerManaged kmsManaged s3Managed unencrypted unknown

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-structure/amazon-macie-object-count-by-encryption-type-structure.json",
  "name": "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."
        }
      ]
    }
  }
}