Amazon Macie · Schema

AccountDetail

Specifies the details of an account to associate with an Amazon Macie administrator account.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
accountId object
email object
View JSON Schema on GitHub

JSON Schema

amazon-macie-account-detail-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-account-detail-schema.json",
  "title": "AccountDetail",
  "description": "Specifies the details of an account to associate with an Amazon Macie administrator account.",
  "type": "object",
  "properties": {
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Web Services account ID for the account."
        }
      ]
    },
    "email": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The email address for the account."
        }
      ]
    }
  },
  "required": [
    "email",
    "accountId"
  ]
}