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

IncidentRecord

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

The record of the incident that's created when an incident occurs.

interface IncidentRecord {
arn: string;
automationExecutions?: AutomationExecution[] | null;
chatChannel?: ChatChannel | null;
creationTime: Date | number;
dedupeString: string;
impact: number;
incidentRecordSource: IncidentRecordSource;
lastModifiedBy: string;
lastModifiedTime: Date | number;
notificationTargets?: NotificationTargetItem[] | null;
resolvedTime?: Date | number | null;
summary?: string | null;
title: string;
}

§Properties

§
arn: string
[src]

The Amazon Resource Name (ARN) of the incident record.

§
automationExecutions?: AutomationExecution[] | null
[src]

The runbook, or automation document, that's run at the beginning of the incident.

§
chatChannel?: ChatChannel | null
[src]

The chat channel used for collaboration during an incident.

§
creationTime: Date | number
[src]

The time that Incident Manager created the incident record.

§
dedupeString: string
[src]

The string Incident Manager uses to prevent duplicate incidents from being created by the same incident in the same account.

§
impact: number
[src]

The impact of the incident on customers and applications.

§
incidentRecordSource: IncidentRecordSource
[src]

Details about the action that started the incident.

§
lastModifiedBy: string
[src]

Who modified the incident most recently.

§
lastModifiedTime: Date | number
[src]

The time at which the incident was most recently modified.

§
notificationTargets?: NotificationTargetItem[] | null
[src]

The Amazon SNS targets that are notified when updates are made to an incident.

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

The time at which the incident was resolved. This appears as a timeline event.

§

The current status of the incident.

§
summary?: string | null
[src]

The summary of the incident. The summary is a brief synopsis of what occurred, what's currently happening, and context of the incident.

§
title: string
[src]

The title of the incident.