page_resolutions
Creates, updates, deletes, gets or lists a page_resolutions resource.
Overview
| Name | page_resolutions |
| Type | Resource |
| Id | aws.ssm_contacts.page_resolutions |
Fields
The following fields are returned by SELECT queries:
- list_page_resolutions
| Name | Datatype | Description |
|---|---|---|
contact_arn | string | The 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_index | integer | The stage in the escalation plan that resolves to this contact. |
type | string | The type of contact for a resolution step. (PERSONAL, ESCALATION, ONCALL_SCHEDULE) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_page_resolutions | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_page_resolutions
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
;