Accept Page
ssmcontacts_accept_page | R Documentation |
Used to acknowledge an engagement to a contact channel during an incident¶
Description¶
Used to acknowledge an engagement to a contact channel during an incident.
Usage¶
ssmcontacts_accept_page(PageId, ContactChannelId, AcceptType, Note,
AcceptCode, AcceptCodeValidation)
Arguments¶
PageId |
[required] The Amazon Resource Name (ARN) of the engagement to a contact channel. |
ContactChannelId |
The ARN of the contact channel. |
AcceptType |
[required] The type indicates if the page was
|
Note |
Information provided by the user when the user acknowledges the page. |
AcceptCode |
[required] A 6-digit code used to acknowledge the page. |
AcceptCodeValidation |
An optional field that Incident Manager uses to
Incident Manager can also |
Value¶
An empty list.
Request syntax¶
svc$accept_page(
PageId = "string",
ContactChannelId = "string",
AcceptType = "DELIVERED"|"READ",
Note = "string",
AcceptCode = "string",
AcceptCodeValidation = "IGNORE"|"ENFORCE"
)
Examples¶
## Not run:
# The following accept-page operation uses an accept code sent to the
# contact channel to accept a page.
svc$accept_page(
AcceptCode = "425440",
AcceptType = "READ",
PageId = "arn:aws:ssm-contacts:us-east-2:682428703967:page/akuam/94ea0c7b..."
)
## End(Not run)