Amazon Macie · Schema

AcceptInvitationRequest

AcceptInvitationRequest schema from Amazon Macie API

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
administratorAccountId object
invitationId object
masterAccount object
View JSON Schema on GitHub

JSON Schema

amazon-macie-accept-invitation-request-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-accept-invitation-request-schema.json",
  "title": "AcceptInvitationRequest",
  "description": "AcceptInvitationRequest schema from Amazon Macie API",
  "type": "object",
  "properties": {
    "administratorAccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Web Services account ID for the account that sent the invitation."
        }
      ]
    },
    "invitationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the invitation to accept."
        }
      ]
    },
    "masterAccount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "(Deprecated) The Amazon Web Services account ID for the account that sent the invitation. This property has been replaced by the administratorAccountId property and is retained only for backward compatibility."
        }
      ]
    }
  },
  "required": [
    "invitationId"
  ]
}