Amazon GuardDuty · Schema

UpdateMemberDetectorsRequest

UpdateMemberDetectorsRequest schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AccountIds object
DataSources object
Features object
View JSON Schema on GitHub

JSON Schema

guardduty-update-member-detectors-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-update-member-detectors-request-schema.json",
  "title": "UpdateMemberDetectorsRequest",
  "description": "UpdateMemberDetectorsRequest schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "AccountIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountIds"
        },
        {
          "xml": {
            "name": "accountIds"
          },
          "description": "A list of member account IDs to be updated."
        }
      ]
    },
    "DataSources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataSourceConfigurations"
        },
        {
          "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/MemberFeaturesConfigurations"
        },
        {
          "xml": {
            "name": "features"
          },
          "description": "A list of features that will be updated for the specified member accounts."
        }
      ]
    }
  },
  "required": [
    "AccountIds"
  ]
}