{ "$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": "

Indicates whether GuardDuty is automatically enabled for accounts added to the organization.

Even though this is still supported, we recommend using AutoEnableOrganizationMembers to achieve the similar results.

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": "

Indicates the auto-enablement configuration of GuardDuty for the member accounts in the organization.

" } ] } }, "required": [ "MemberAccountLimitReached" ] }