Skip to content

List Page Resolutions

ssmcontacts_list_page_resolutions R Documentation

Returns the resolution path of an engagement

Description

Returns the resolution path of an engagement. For example, the escalation plan engaged in an incident might target an on-call schedule that includes several contacts in a rotation, but just one contact on-call when the incident starts. The resolution path indicates the hierarchy of escalation plan \ on-call schedule \ contact.

Usage

ssmcontacts_list_page_resolutions(NextToken, PageId)

Arguments

NextToken

A token to start the list. Use this token to get the next set of results.

PageId

[required] The Amazon Resource Name (ARN) of the contact engaged for the incident.

Value

A list with the following syntax:

list(
  NextToken = "string",
  PageResolutions = list(
    list(
      ContactArn = "string",
      Type = "PERSONAL"|"ESCALATION"|"ONCALL_SCHEDULE",
      StageIndex = 123
    )
  )
)

Request syntax

svc$list_page_resolutions(
  NextToken = "string",
  PageId = "string"
)