Amazon Macie · JSON Structure

Amazon Macie Bucket Count By Effective Permission Structure

Provides information about the number of S3 buckets that are publicly accessible due to a combination of permissions settings for each bucket.

Type: object Properties: 4
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

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

Properties

publiclyAccessible publiclyReadable publiclyWritable 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-bucket-count-by-effective-permission-structure.json",
  "name": "BucketCountByEffectivePermission",
  "description": "Provides information about the number of S3 buckets that are publicly accessible due to a combination of permissions settings for each bucket.",
  "type": "object",
  "properties": {
    "publiclyAccessible": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of buckets that allow the general public to have read or write access to the bucket."
        }
      ]
    },
    "publiclyReadable": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of buckets that allow the general public to have read access to the bucket."
        }
      ]
    },
    "publiclyWritable": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of buckets that allow the general public to have write access to the bucket."
        }
      ]
    },
    "unknown": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The total number of buckets that Amazon Macie wasn't able to evaluate permissions settings for. Macie can't determine whether these buckets are publicly accessible."
        }
      ]
    }
  }
}