Amazon GuardDuty · Schema

DescribeOrganizationConfigurationResponse

DescribeOrganizationConfigurationResponse schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AutoEnable object
MemberAccountLimitReached object
DataSources object
Features object
NextToken object
AutoEnableOrganizationMembers object
View JSON Schema on GitHub

JSON Schema

guardduty-describe-organization-configuration-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-describe-organization-configuration-response-schema.json",
  "title": "DescribeOrganizationConfigurationResponse",
  "description": "DescribeOrganizationConfigurationResponse schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "AutoEnable": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "deprecated": true,
          "xml": {
            "name": "autoEnable"
          },
          "description": "<p>Indicates whether GuardDuty is automatically enabled for accounts added to the organization.</p> <p>Even though this is still supported, we recommend using <code>AutoEnableOrganizationMembers</code> to achieve the similar results.</p>This field is deprecated, use AutoEnableOrganizationMembers instead"
        }
      ]
    },
    "MemberAccountLimitReached": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "xml": {
            "name": "memberAccountLimitReached"
          },
          "description": "Indicates whether the maximum number of allowed member accounts are already associated with the delegated administrator account for your organization."
        }
      ]
    },
    "DataSources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrganizationDataSourceConfigurationsResult"
        },
        {
          "deprecated": true,
          "xml": {
            "name": "dataSources"
          },
          "description": "Describes which data sources are enabled automatically for member accounts.This parameter is deprecated, use Features instead"
        }
      ]
    },
    "Features": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrganizationFeaturesConfigurationsResults"
        },
        {
          "xml": {
            "name": "features"
          },
          "description": "A list of features that are configured for this organization."
        }
      ]
    },
    "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."
        }
      ]
    },
    "AutoEnableOrganizationMembers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AutoEnableMembers"
        },
        {
          "xml": {
            "name": "autoEnableOrganizationMembers"
          },
          "description": "<p>Indicates the auto-enablement configuration of GuardDuty for the member accounts in the organization.</p> <ul> <li> <p> <code>NEW</code>: Indicates that when a new account joins the organization, they will have GuardDuty enabled automatically. </p> </li> <li> <p> <code>ALL</code>: Indicates that all accounts in the Amazon Web Services Organization have GuardDuty enabled automatically. This includes <code>NEW</code> accounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty.</p> </li> <li> <p> <code>NONE</code>: Indicates that GuardDuty will not be automatically enabled for any accounts in the organization. GuardDuty must be managed for each account individually by the administrator.</p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "MemberAccountLimitReached"
  ]
}