Amazon Macie · Schema

SuppressDataIdentifier

Specifies a custom data identifier or managed data identifier that detected a type of sensitive data to start excluding or including in an S3 bucket's sensitivity score.

Data SecuritySensitive DataPrivacyComplianceMachine-LearningS3

Properties

Name Type Description
id object
type object
View JSON Schema on GitHub

JSON Schema

amazon-macie-suppress-data-identifier-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-suppress-data-identifier-schema.json",
  "title": "SuppressDataIdentifier",
  "description": "Specifies a custom data identifier or managed data identifier that detected a type of sensitive data to start excluding or including in an S3 bucket's sensitivity score.",
  "type": "object",
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataIdentifierType"
        },
        {
          "description": "The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier."
        }
      ]
    }
  }
}