Skip to main content

page_resolutions

Creates, updates, deletes, gets or lists a page_resolutions resource.

Overview

Namepage_resolutions
TypeResource
Idaws.ssm_contacts.page_resolutions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contact_arnstringThe Amazon Resource Name (ARN) of a contact in the engagement resolution process. (pattern: <code>arn:(aws|aws-cn|aws-us-gov):ssm-contacts:[-\w+=/,.@]:[0-9]+:([\w+=/,.@:-]+)</code>)
stage_indexintegerThe stage in the escalation plan that resolves to this contact.
typestringThe type of contact for a resolution step. (PERSONAL, ESCALATION, ONCALL_SCHEDULE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_page_resolutionsselectregionReturns 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
contact_arn,
stage_index,
type
FROM aws.ssm_contacts.page_resolutions
WHERE region = '{{ region }}' -- required
;