Amazon Incident Manager · JSON Structure

Incident Manager Trigger Details Structure

Details about what caused the incident to be created in Incident Manager.

Type: object Properties: 4 Required: 2
AutomationDevOpsIncident ManagementOperations

TriggerDetails is a JSON Structure definition published by Amazon Incident Manager, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

rawData source timestamp triggerArn

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-incident-manager/refs/heads/main/json-structure/incident-manager-trigger-details-structure.json",
  "name": "TriggerDetails",
  "description": "Details about what caused the incident to be created in Incident Manager.",
  "type": "object",
  "properties": {
    "rawData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RawData"
        },
        {
          "description": "Raw data passed from either Amazon EventBridge, Amazon CloudWatch, or Incident Manager when an incident is created."
        }
      ]
    },
    "source": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IncidentSource"
        },
        {
          "description": "Identifies the service that sourced the event. All events sourced from within Amazon Web Services begin with \"<code>aws.</code>\" Customer-generated events can have any value here, as long as it doesn't begin with \"<code>aws.</code>\" We recommend the use of Java package-name style reverse domain-name strings. "
        }
      ]
    },
    "timestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time that the incident was detected."
        }
      ]
    },
    "triggerArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the source that detected the incident."
        }
      ]
    }
  },
  "required": [
    "source",
    "timestamp"
  ]
}