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

CreateTimelineEventInput

import type { CreateTimelineEventInput } from "https://aws-api.deno.dev/v0.4/services/ssmincidents.ts?docs=full";
interface CreateTimelineEventInput {
clientToken?: string | null;
eventData: string;
eventReferences?: EventReference[] | null;
eventTime: Date | number;
eventType: string;
incidentRecordArn: string;
}

§Properties

§
clientToken?: string | null
[src]

A token ensuring that the action is called only once with the specified details.

§
eventData: string
[src]

A short description of the event.

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

Adds one or more references to the TimelineEvent. A reference can be an Amazon Web Services resource involved in the incident or in some way associated with it. When you specify a reference, you enter the Amazon Resource Name (ARN) of the resource. You can also specify a related item. As an example, you could specify the ARN of an Amazon DynamoDB (DynamoDB) table. The table for this example is the resource. You could also specify a Amazon CloudWatch metric for that table. The metric is the related item.

§
eventTime: Date | number
[src]

The time that the event occurred.

§
eventType: string
[src]

The type of the event. You can create timeline events of type Custom Event.

§
incidentRecordArn: string
[src]

The Amazon Resource Name (ARN) of the incident record to which the event will be added.