Amazon Macie · Schema

SensitivityAggregations

Provides aggregated statistical data for sensitive data discovery metrics that apply to S3 buckets. Each field contains aggregated data for all the buckets that have a sensitivity score (sensitivityScore) of a specified value or within a specified range (BucketStatisticsBySensitivity). If automated sensitive data discovery is currently disabled for your account, the value for each field is 0.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
classifiableSizeInBytes object
publiclyAccessibleCount object
totalCount object
totalSizeInBytes object
View JSON Schema on GitHub

JSON Schema

amazon-macie-sensitivity-aggregations-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-sensitivity-aggregations-schema.json",
  "title": "SensitivityAggregations",
  "description": "Provides aggregated statistical data for sensitive data discovery metrics that apply to S3 buckets. Each field contains aggregated data for all the buckets that have a sensitivity score (sensitivityScore) of a specified value or within a specified range (BucketStatisticsBySensitivity). If automated sensitive data discovery is currently disabled for your account, the value for each field is 0.",
  "type": "object",
  "properties": {
    "classifiableSizeInBytes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "<p>The total storage size, in bytes, of all the objects that Amazon Macie can analyze in the buckets. These objects use a supported storage class and have a file name extension for a supported file or storage format.</p> <p>If versioning is enabled for any of the buckets, this value is based on the size of the latest version of each applicable object in the buckets. This value doesn't reflect the storage size of all versions of all applicable objects in the buckets.</p>"
        }
      ]
    },
    "publiclyAccessibleCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of buckets that are publicly accessible due to a combination of permissions settings for each bucket."
        }
      ]
    },
    "totalCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of buckets."
        }
      ]
    },
    "totalSizeInBytes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "<p>The total storage size, in bytes, of the buckets.</p> <p>If versioning is enabled for any of the buckets, this value is based on the size of the latest version of each object in the buckets. This value doesn't reflect the storage size of all versions of the objects in the buckets.</p>"
        }
      ]
    }
  }
}