Skip to content

Update Incident Record

ssmincidents_update_incident_record R Documentation

Update the details of an incident record

Description

Update the details of an incident record. You can use this operation to update an incident record from the defined chat channel. For more information about using actions in chat channels, see Interacting through chat.

Usage

ssmincidents_update_incident_record(arn, chatChannel, clientToken,
  impact, notificationTargets, status, summary, title)

Arguments

arn

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

chatChannel

The Chatbot chat channel where responders can collaborate.

clientToken

A token that ensures that a client calls the operation only once with the specified details.

impact

Defines the impact of the incident to customers and applications. If you provide an impact for an incident, it overwrites the impact provided by the response plan.

Supported impact codes

  • 1 - Critical

  • 2 - High

  • 3 - Medium

  • 4 - Low

  • 5 - No Impact

notificationTargets

The Amazon SNS targets that Incident Manager notifies when a client updates an incident.

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

status

The status of the incident. Possible statuses are Open or Resolved.

summary

A longer description of what occurred during the incident.

title

A brief description of the incident.

Value

An empty list.

Request syntax

svc$update_incident_record(
  arn = "string",
  chatChannel = list(
    chatbotSns = list(
      "string"
    ),
    empty = list()
  ),
  clientToken = "string",
  impact = 123,
  notificationTargets = list(
    list(
      snsTopicArn = "string"
    )
  ),
  status = "OPEN"|"RESOLVED",
  summary = "string",
  title = "string"
)