Amazon GuardDuty · JSON Structure

Guardduty Highest Severity Threat Details Structure

Contains details of the highest severity threat detected during scan and number of infected files.

Type: object Properties: 3
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

HighestSeverityThreatDetails 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

Severity ThreatName Count

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-highest-severity-threat-details-structure.json",
  "name": "HighestSeverityThreatDetails",
  "description": "Contains details of the highest severity threat detected during scan and number of infected files.",
  "type": "object",
  "properties": {
    "Severity": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "severity"
          },
          "description": "Severity level of the highest severity threat detected."
        }
      ]
    },
    "ThreatName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "threatName"
          },
          "description": "Threat name of the highest severity threat detected as part of the malware scan."
        }
      ]
    },
    "Count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "count"
          },
          "description": "Total number of infected files with the highest severity threat detected."
        }
      ]
    }
  }
}