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

CreateResponsePlanInput

import type { CreateResponsePlanInput } from "https://aws-api.deno.dev/v0.3/services/ssmincidents.ts?docs=full";
interface CreateResponsePlanInput {
actions?: Action[] | null;
chatChannel?: ChatChannel | null;
clientToken?: string | null;
displayName?: string | null;
engagements?: string[] | null;
incidentTemplate: IncidentTemplate;
name: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
actions?: Action[] | null
[src]

The actions that the response plan starts at the beginning of an incident.

§
chatChannel?: ChatChannel | null
[src]

The Chatbot chat channel used for collaboration during an incident.

§
clientToken?: string | null
[src]

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

§
displayName?: string | null
[src]

The long format of the response plan name. This field can contain spaces.

§
engagements?: string[] | null
[src]

The contacts and escalation plans that the response plan engages during an incident.

§
incidentTemplate: IncidentTemplate
[src]

Details used to create an incident when using this response plan.

§
name: string
[src]

The short format name of the response plan. Can't include spaces.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags that you are adding to the response plan.