Amazon Macie · Schema

AllowListCriteria

Specifies the criteria for an allow list. The criteria must specify a regular expression (regex) or an S3 object (s3WordsList). It can't specify both.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
regex object
s3WordsList object
View JSON Schema on GitHub

JSON Schema

amazon-macie-allow-list-criteria-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-allow-list-criteria-schema.json",
  "title": "AllowListCriteria",
  "description": "Specifies the criteria for an allow list. The criteria must specify a regular expression (regex) or an S3 object (s3WordsList). It can't specify both.",
  "type": "object",
  "properties": {
    "regex": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__stringMin1Max512PatternSS"
        },
        {
          "description": "The regular expression (<i>regex</i>) that defines the text pattern to ignore. The expression can contain as many as 512 characters."
        }
      ]
    },
    "s3WordsList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3WordsList"
        },
        {
          "description": "The location and name of the S3 object that lists specific text to ignore."
        }
      ]
    }
  }
}