Amazon GuardDuty · Schema

MemberFeaturesConfiguration

Contains information about the features for the member account.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Name object
Status object
AdditionalConfiguration object
View JSON Schema on GitHub

JSON Schema

guardduty-member-features-configuration-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-member-features-configuration-schema.json",
  "title": "MemberFeaturesConfiguration",
  "description": "Contains information about the features for the member account.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrgFeature"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "The name of the feature."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FeatureStatus"
        },
        {
          "xml": {
            "name": "status"
          },
          "description": "The status of the feature."
        }
      ]
    },
    "AdditionalConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MemberAdditionalConfigurations"
        },
        {
          "xml": {
            "name": "additionalConfiguration"
          },
          "description": "Additional configuration of the feature for the member account."
        }
      ]
    }
  }
}