Amazon Macie · Schema

CustomDataIdentifierSummary

Provides information about a custom data identifier.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
arn object
createdAt object
description object
id object
name object
View JSON Schema on GitHub

JSON Schema

amazon-macie-custom-data-identifier-summary-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-custom-data-identifier-summary-schema.json",
  "title": "CustomDataIdentifierSummary",
  "description": "Provides information about a custom data identifier.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the custom data identifier."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampIso8601"
        },
        {
          "description": "The date and time, in UTC and extended ISO 8601 format, when the custom data identifier was created."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The custom description of the custom data identifier."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the custom data identifier."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The custom name of the custom data identifier."
        }
      ]
    }
  }
}