List Pages By Contact
ssmcontacts_list_pages_by_contact | R Documentation |
Lists the engagements to a contact's contact channels¶
Description¶
Lists the engagements to a contact's contact channels.
Usage¶
ssmcontacts_list_pages_by_contact(ContactId, NextToken, MaxResults)
Arguments¶
ContactId |
[required] The Amazon Resource Name (ARN) of the contact you are retrieving engagements for. |
NextToken |
The pagination token to continue to the next page of results. |
MaxResults |
The maximum number of engagements to contact channels to list per page of results. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
Pages = list(
list(
PageArn = "string",
EngagementArn = "string",
ContactArn = "string",
Sender = "string",
IncidentId = "string",
SentTime = as.POSIXct(
"2015-01-01"
),
DeliveryTime = as.POSIXct(
"2015-01-01"
),
ReadTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_pages_by_contact(
ContactId = "string",
NextToken = "string",
MaxResults = 123
)
Examples¶
## Not run:
# The following list-pages-by-contact example lists all pages to the
# specified contact.
svc$list_pages_by_contact(
ContactId = "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam"
)
## End(Not run)