Amazon Macie · JSON Structure

Amazon Macie Account Detail Structure

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

Type: object Properties: 2 Required: 2
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

AccountDetail is a JSON Structure definition published by Amazon Macie, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountId email

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-structure/amazon-macie-account-detail-structure.json",
  "name": "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"
  ]
}