Amazon GuardDuty · JSON Structure

Guardduty Scan Threat Name Structure

Contains files infected with the given threat providing details of malware name and severity.

Type: object Properties: 4
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

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

Properties

Name Severity ItemCount FilePaths

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-scan-threat-name-structure.json",
  "name": "ScanThreatName",
  "description": "Contains files infected with the given threat providing details of malware name and severity.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "The name of the identified threat."
        }
      ]
    },
    "Severity": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "severity"
          },
          "description": "Severity of threat identified as part of the malware scan."
        }
      ]
    },
    "ItemCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "itemCount"
          },
          "description": "Total number of files infected with given threat."
        }
      ]
    },
    "FilePaths": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilePaths"
        },
        {
          "xml": {
            "name": "filePaths"
          },
          "description": "List of infected files in EBS volume with details."
        }
      ]
    }
  }
}