Describe Page
ssmcontacts_describe_page | R Documentation |
Lists details of the engagement to a contact channel¶
Description¶
Lists details of the engagement to a contact channel.
Usage¶
ssmcontacts_describe_page(PageId)
Arguments¶
PageId |
[required] The ID of the engagement to a contact channel. |
Value¶
A list with the following syntax:
list(
PageArn = "string",
EngagementArn = "string",
ContactArn = "string",
Sender = "string",
Subject = "string",
Content = "string",
PublicSubject = "string",
PublicContent = "string",
IncidentId = "string",
SentTime = as.POSIXct(
"2015-01-01"
),
ReadTime = as.POSIXct(
"2015-01-01"
),
DeliveryTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$describe_page(
PageId = "string"
)
Examples¶
## Not run:
# The following describe-page example lists details of a page to a contact
# channel. The page will include the subject and content provided.
svc$describe_page(
PageId = "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/ad0052bd..."
)
## End(Not run)