Amazon Incident Manager · JSON Structure

Incident Manager Event Reference Structure

An item referenced in a TimelineEvent that is involved in or somehow associated with an incident. You can specify an Amazon Resource Name (ARN) for an Amazon Web Services resource or a RelatedItem ID.

Type: object Properties: 2
AutomationDevOpsIncident ManagementOperations

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

Properties

relatedItemId resource

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-event-reference-structure.json",
  "name": "EventReference",
  "description": "An item referenced in a <code>TimelineEvent</code> that is involved in or somehow associated with an incident. You can specify an Amazon Resource Name (ARN) for an Amazon Web Services resource or a <code>RelatedItem</code> ID.",
  "type": "object",
  "properties": {
    "relatedItemId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GeneratedId"
        },
        {
          "description": "The ID of a <code>RelatedItem</code> referenced in a <code>TimelineEvent</code>."
        }
      ]
    },
    "resource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of an Amazon Web Services resource referenced in a <code>TimelineEvent</code>."
        }
      ]
    }
  }
}