{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-update-organization-configuration-request-schema.json", "title": "UpdateOrganizationConfigurationRequest", "description": "UpdateOrganizationConfigurationRequest schema from Amazon GuardDuty API", "type": "object", "properties": { "AutoEnable": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "deprecated": true, "xml": { "name": "autoEnable" }, "description": "

Indicates whether to automatically enable member accounts in the organization.

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

This field is deprecated, use AutoEnableOrganizationMembers instead" } ] }, "DataSources": { "allOf": [ { "$ref": "#/components/schemas/OrganizationDataSourceConfigurations" }, { "deprecated": true, "xml": { "name": "dataSources" }, "description": "Describes which data sources will be updated.This parameter is deprecated, use Features instead" } ] }, "Features": { "allOf": [ { "$ref": "#/components/schemas/OrganizationFeaturesConfigurations" }, { "xml": { "name": "features" }, "description": "A list of features that will be configured for the organization." } ] }, "AutoEnableOrganizationMembers": { "allOf": [ { "$ref": "#/components/schemas/AutoEnableMembers" }, { "xml": { "name": "autoEnableOrganizationMembers" }, "description": "

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

" } ] } } }