Amazon GuardDuty · Schema
ThreatDetectedByName
Contains details about identified threats organized by threat name.
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection
Properties
| Name | Type | Description |
|---|---|---|
| ItemCount | object | |
| UniqueThreatNameCount | object | |
| Shortened | object | |
| ThreatNames | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-threat-detected-by-name-schema.json",
"title": "ThreatDetectedByName",
"description": "Contains details about identified threats organized by threat name.",
"type": "object",
"properties": {
"ItemCount": {
"allOf": [
{
"$ref": "#/components/schemas/Integer"
},
{
"xml": {
"name": "itemCount"
},
"description": "Total number of infected files identified."
}
]
},
"UniqueThreatNameCount": {
"allOf": [
{
"$ref": "#/components/schemas/Integer"
},
{
"xml": {
"name": "uniqueThreatNameCount"
},
"description": "Total number of unique threats by name identified, as part of the malware scan."
}
]
},
"Shortened": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"xml": {
"name": "shortened"
},
"description": "Flag to determine if the finding contains every single infected file-path and/or every threat."
}
]
},
"ThreatNames": {
"allOf": [
{
"$ref": "#/components/schemas/ScanThreatNames"
},
{
"xml": {
"name": "threatNames"
},
"description": "List of identified threats with details, organized by threat name."
}
]
}
}
}