Amazon GuardDuty · Schema

TriggerDetails

Represents the reason the scan was triggered.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
GuardDutyFindingId object
Description object
View JSON Schema on GitHub

JSON Schema

guardduty-trigger-details-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-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."
        }
      ]
    }
  }
}