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

IncidentTemplate

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

Basic details used in creating a response plan. The response plan is then used to create an incident record.

interface IncidentTemplate {
dedupeString?: string | null;
impact: number;
notificationTargets?: NotificationTargetItem[] | null;
summary?: string | null;
title: string;
}

§Properties

§
dedupeString?: string | null
[src]

Used to stop Incident Manager from creating multiple incident records for the same incident.

§
impact: number
[src]

The impact of the incident on your customers and applications.

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

The Amazon SNS targets that are notified when updates are made to an 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.

§
title: string
[src]

The title of the incident.