Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TimelineEvent

import type { TimelineEvent } from "https://aws-api.deno.dev/v0.4/services/ssmincidents.ts?docs=full";

A significant event that happened during the incident.

interface TimelineEvent {
eventData: string;
eventId: string;
eventReferences?: EventReference[] | null;
eventTime: Date | number;
eventType: string;
eventUpdatedTime: Date | number;
incidentRecordArn: string;
}

§Properties

§
eventData: string
[src]

A short description of the event.

§
eventId: string
[src]

The ID of the timeline event.

§
eventReferences?: EventReference[] | null
[src]

A list of references in a TimelineEvent.

§
eventTime: Date | number
[src]

The time that the event occurred.

§
eventType: string
[src]

The type of event that occurred. Currently Incident Manager supports only the Custom Event type.

§
eventUpdatedTime: Date | number
[src]

The time that the timeline event was last updated.

§
incidentRecordArn: string
[src]

The Amazon Resource Name (ARN) of the incident that the event occurred during.