Amazon GuardDuty · Schema

InviteMembersRequest

InviteMembersRequest schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AccountIds object
DisableEmailNotification object
Message object
View JSON Schema on GitHub

JSON Schema

guardduty-invite-members-request-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-invite-members-request-schema.json",
  "title": "InviteMembersRequest",
  "description": "InviteMembersRequest schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "AccountIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountIds"
        },
        {
          "xml": {
            "name": "accountIds"
          },
          "description": "A list of account IDs of the accounts that you want to invite to GuardDuty as members."
        }
      ]
    },
    "DisableEmailNotification": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "xml": {
            "name": "disableEmailNotification"
          },
          "description": "A Boolean value that specifies whether you want to disable email notification to the accounts that you are inviting to GuardDuty as members."
        }
      ]
    },
    "Message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "message"
          },
          "description": "The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members."
        }
      ]
    }
  },
  "required": [
    "AccountIds"
  ]
}