Amazon GuardDuty · Schema

ListOrganizationAdminAccountsResponse

ListOrganizationAdminAccountsResponse schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AdminAccounts object
NextToken object
View JSON Schema on GitHub

JSON Schema

guardduty-list-organization-admin-accounts-response-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-list-organization-admin-accounts-response-schema.json",
  "title": "ListOrganizationAdminAccountsResponse",
  "description": "ListOrganizationAdminAccountsResponse schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "AdminAccounts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AdminAccounts"
        },
        {
          "xml": {
            "name": "adminAccounts"
          },
          "description": "A list of accounts configured as GuardDuty delegated administrators."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "nextToken"
          },
          "description": "The pagination parameter to be used on the next list operation to retrieve more items."
        }
      ]
    }
  }
}