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

UpdateTimelineEventInput

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

§Properties

§
clientToken?: string | null
[src]

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

§
eventData?: string | null
[src]

A short description of the event.

§
eventId: string
[src]

The ID of the event you are updating. You can find this by using ListTimelineEvents.

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

Updates all existing references in a 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.

! IMPORTANT: ! This update action overrides all existing references. ! If you want to keep existing references, you must specify them in the call. ! If you don't, this action removes them and enters only new references.

§
eventTime?: Date | number | null
[src]

The time that the event occurred.

§
eventType?: string | null
[src]

The type of the event. You can update events of type Custom Event.

§
incidentRecordArn: string
[src]

The Amazon Resource Name (ARN) of the incident that includes the timeline event.