Amazon GuardDuty · Schema

ScanFilePath

Contains details of infected file including name, file path and hash.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
FilePath object
VolumeArn object
Hash object
FileName object
View JSON Schema on GitHub

JSON Schema

guardduty-scan-file-path-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-scan-file-path-schema.json",
  "title": "ScanFilePath",
  "description": "Contains details of infected file including name, file path and hash.",
  "type": "object",
  "properties": {
    "FilePath": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "filePath"
          },
          "description": "The file path of the infected file."
        }
      ]
    },
    "VolumeArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "volumeArn"
          },
          "description": "EBS volume Arn details of the infected file."
        }
      ]
    },
    "Hash": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "hash"
          },
          "description": "The hash value of the infected file."
        }
      ]
    },
    "FileName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "fileName"
          },
          "description": "File name of the infected file."
        }
      ]
    }
  }
}