Skip to main content

pages_by_engagements

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

Overview

Namepages_by_engagements
TypeResource
Idaws.ssm_contacts.pages_by_engagements

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contact_arnstringThe ARN of the contact that Incident Manager is engaging. (pattern: <code>arn:(aws|aws-cn|aws-us-gov):ssm-contacts:[-\w+=/,.@]:[0-9]+:([\w+=/,.@:-]+)</code>)
delivery_timestring (date-time)The time the message was delivered to the contact channel.
engagement_arnstringThe ARN of the engagement that this page is part of. (pattern: <code>arn:(aws|aws-cn|aws-us-gov):ssm-contacts:[-\w+=/,.@]:[0-9]+:([\w+=/,.@:-]+)</code>)
incident_idstringThe ARN of the incident that's engaging the contact channel. (pattern: <code>^[\a-zA-Z0-9_@#%+=:?./!\s-]$</code>)
page_arnstringThe Amazon Resource Name (ARN) of the page to the contact channel. (pattern: <code>arn:(aws|aws-cn|aws-us-gov):ssm-contacts:[-\w+=/,.@]:[0-9]+:([\w+=/,.@:-]+)</code>)
read_timestring (date-time)The time that the contact channel acknowledged engagement.
senderstringThe user that started the engagement. (pattern: <code>^[\a-zA-Z0-9_@#%+=:?./!\s-]$</code>)
sent_timestring (date-time)The time that Incident Manager engaged the contact channel.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_pages_by_engagementselectregionLists the engagements to contact channels that occurred by engaging a 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

Lists the engagements to contact channels that occurred by engaging a contact.

SELECT
contact_arn,
delivery_time,
engagement_arn,
incident_id,
page_arn,
read_time,
sender,
sent_time
FROM aws.ssm_contacts.pages_by_engagements
WHERE region = '{{ region }}' -- required
;