Amazon GuardDuty · Schema

Invitation

Contains information about the invitation to become a member account.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AccountId object
InvitationId object
RelationshipStatus object
InvitedAt object
View JSON Schema on GitHub

JSON Schema

guardduty-invitation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-invitation-schema.json",
  "title": "Invitation",
  "description": "Contains information about the invitation to become a member account.",
  "type": "object",
  "properties": {
    "AccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "xml": {
            "name": "accountId"
          },
          "description": "The ID of the account that the invitation was sent from."
        }
      ]
    },
    "InvitationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "invitationId"
          },
          "description": "The ID of the invitation. This value is used to validate the inviter account to the member account."
        }
      ]
    },
    "RelationshipStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "relationshipStatus"
          },
          "description": "The status of the relationship between the inviter and invitee accounts."
        }
      ]
    },
    "InvitedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "invitedAt"
          },
          "description": "The timestamp when the invitation was sent."
        }
      ]
    }
  }
}