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

UpdateIncidentRecordInput

import type { UpdateIncidentRecordInput } from "https://aws-api.deno.dev/v0.4/services/ssmincidents.ts?docs=full";
interface UpdateIncidentRecordInput {
arn: string;
chatChannel?: ChatChannel | null;
clientToken?: string | null;
impact?: number | null;
notificationTargets?: NotificationTargetItem[] | null;
status?: IncidentRecordStatus | null;
summary?: string | null;
title?: string | null;
}

§Properties

§
arn: string
[src]

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

§
chatChannel?: ChatChannel | null
[src]

The Chatbot chat channel where responders can collaborate.

§
clientToken?: string | null
[src]

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

§
impact?: number | null
[src]

Defines the impact of the incident to customers and applications. Providing an impact overwrites the impact provided by the response plan.

Possible impacts:

  • 1 - Critical impact, full application failure that impacts many to all customers.
  • 2 - High impact, partial application failure with impact to many customers.
  • 3 - Medium impact, the application is providing reduced service to customers.
  • 4 - Low impact, customer aren't impacted by the problem yet.
  • 5 - No impact, customers aren't currently impacted but urgent action is needed to avoid impact.
§
notificationTargets?: NotificationTargetItem[] | null
[src]

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

Using multiple SNS topics creates redundancy in the event that a Region is down during the incident.

§

The status of the incident. An incident can be Open or Resolved.

§
summary?: string | null
[src]

A longer description of what occurred during the incident.

§
title?: string | null
[src]

A brief description of the incident.