Represents the reason the scan was triggered.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-trigger-details-schema.json", "title": "TriggerDetails", "description": "Represents the reason the scan was triggered.", "type": "object", "properties": { "GuardDutyFindingId": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "xml": { "name": "guardDutyFindingId" }, "description": "The ID of the GuardDuty finding that triggered the malware scan." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "xml": { "name": "description" }, "description": "The description of the scan trigger." } ] } } }