Amazon GuardDuty · JSON Structure

Guardduty Data Source Configurations Structure

Contains information about which data sources are enabled.

Type: object Properties: 3
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

DataSourceConfigurations is a JSON Structure definition published by Amazon GuardDuty, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

S3Logs Kubernetes MalwareProtection

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-structure/guardduty-data-source-configurations-structure.json",
  "name": "DataSourceConfigurations",
  "description": "Contains information about which data sources are enabled.",
  "type": "object",
  "properties": {
    "S3Logs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3LogsConfiguration"
        },
        {
          "xml": {
            "name": "s3Logs"
          },
          "description": "Describes whether S3 data event logs are enabled as a data source."
        }
      ]
    },
    "Kubernetes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KubernetesConfiguration"
        },
        {
          "xml": {
            "name": "kubernetes"
          },
          "description": "Describes whether any Kubernetes logs are enabled as data sources."
        }
      ]
    },
    "MalwareProtection": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MalwareProtectionConfiguration"
        },
        {
          "xml": {
            "name": "malwareProtection"
          },
          "description": "Describes whether Malware Protection is enabled as a data source."
        }
      ]
    }
  }
}