Amazon GuardDuty · Schema

Volume

Volume used by the Kubernetes workload.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Name object
HostPath object
View JSON Schema on GitHub

JSON Schema

guardduty-volume-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-volume-schema.json",
  "title": "Volume",
  "description": "Volume used by the Kubernetes workload.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "Volume name."
        }
      ]
    },
    "HostPath": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HostPath"
        },
        {
          "xml": {
            "name": "hostPath"
          },
          "description": "Represents a pre-existing file or directory on the host machine that the volume maps to."
        }
      ]
    }
  }
}