Amazon GuardDuty · Schema

KubernetesConfigurationResult

Describes whether any Kubernetes logs will be enabled as a data source.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AuditLogs object
View JSON Schema on GitHub

JSON Schema

guardduty-kubernetes-configuration-result-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-kubernetes-configuration-result-schema.json",
  "title": "KubernetesConfigurationResult",
  "description": "Describes whether any Kubernetes logs will be enabled as a data source.",
  "type": "object",
  "properties": {
    "AuditLogs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KubernetesAuditLogsConfigurationResult"
        },
        {
          "xml": {
            "name": "auditLogs"
          },
          "description": "Describes whether Kubernetes audit logs are enabled as a data source."
        }
      ]
    }
  },
  "required": [
    "AuditLogs"
  ]
}