Amazon Macie · Schema

S3ClassificationScope

Specifies the S3 buckets that are excluded from automated sensitive data discovery for an Amazon Macie account.

Data SecuritySensitive DataPrivacyComplianceMachine-LearningS3

Properties

Name Type Description
excludes object
View JSON Schema on GitHub

JSON Schema

amazon-macie-s3-classification-scope-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-s3-classification-scope-schema.json",
  "title": "S3ClassificationScope",
  "description": "Specifies the S3 buckets that are excluded from automated sensitive data discovery for an Amazon Macie account.",
  "type": "object",
  "properties": {
    "excludes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3ClassificationScopeExclusion"
        },
        {
          "description": "The S3 buckets that are excluded."
        }
      ]
    }
  },
  "required": [
    "excludes"
  ]
}