List Page Receipts
ssmcontacts_list_page_receipts | R Documentation |
Lists all of the engagements to contact channels that have been acknowledged¶
Description¶
Lists all of the engagements to contact channels that have been acknowledged.
Usage¶
ssmcontacts_list_page_receipts(PageId, NextToken, MaxResults)
Arguments¶
PageId |
[required] The Amazon Resource Name (ARN) of the engagement to a specific contact channel. |
NextToken |
The pagination token to continue to the next page of results. |
MaxResults |
The maximum number of acknowledgements per page of results. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
Receipts = list(
list(
ContactChannelArn = "string",
ReceiptType = "DELIVERED"|"ERROR"|"READ"|"SENT"|"STOP",
ReceiptInfo = "string",
ReceiptTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_page_receipts(
PageId = "string",
NextToken = "string",
MaxResults = 123
)
Examples¶
## Not run:
# The following command-name example lists whether a page was received or
# not by a contact.
svc$list_page_receipts(
PageId = "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/94ea0c7b..."
)
## End(Not run)