CreateTimelineEventInput

CreateTimelineEventInput schema

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
clientToken object
eventData object
eventReferences object
eventTime object
eventType object
incidentRecordArn object
View JSON Schema on GitHub

JSON Schema

incident-manager-create-timeline-event-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-schema/incident-manager-create-timeline-event-input-schema.json",
  "title": "CreateTimelineEventInput",
  "description": "CreateTimelineEventInput schema",
  "type": "object",
  "properties": {
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientToken"
        },
        {
          "description": "A token that ensures that a client calls the action only once with the specified details."
        }
      ]
    },
    "eventData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventData"
        },
        {
          "description": "A short description of the event."
        }
      ]
    },
    "eventReferences": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventReferenceList"
        },
        {
          "description": "Adds one or more references to the <code>TimelineEvent</code>. A reference is an Amazon Web Services resource involved or associated with the incident. To specify a reference, enter its Amazon Resource Name (ARN). You can also specify a related item associated with a resource. For example, to specify an Amazon DynamoDB (DynamoDB) table as a resource, use the table's ARN. You can also specify an Amazon CloudWatch metric associated with the DynamoDB table as a related item."
        }
      ]
    },
    "eventTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time that the event occurred."
        }
      ]
    },
    "eventType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimelineEventType"
        },
        {
          "description": "The type of event. You can create timeline events of type <code>Custom Event</code>."
        }
      ]
    },
    "incidentRecordArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the incident record that the action adds the incident to."
        }
      ]
    }
  },
  "required": [
    "eventData",
    "eventTime",
    "eventType",
    "incidentRecordArn"
  ]
}