Amazon Macie · Schema

TagCriterionForJob

Specifies a tag-based condition that determines whether an S3 bucket is included or excluded from a classification job.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
comparator object
tagValues object
View JSON Schema on GitHub

JSON Schema

amazon-macie-tag-criterion-for-job-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-tag-criterion-for-job-schema.json",
  "title": "TagCriterionForJob",
  "description": "Specifies a tag-based condition that determines whether an S3 bucket is included or excluded from a classification job.",
  "type": "object",
  "properties": {
    "comparator": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobComparator"
        },
        {
          "description": "The operator to use in the condition. Valid values are EQ (equals) and NE (not equals)."
        }
      ]
    },
    "tagValues": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOfTagCriterionPairForJob"
        },
        {
          "description": "The tag keys, tag values, or tag key and value pairs to use in the condition."
        }
      ]
    }
  }
}