List Engagements
| ssmcontacts_list_engagements | R Documentation |
Lists all engagements that have happened in an incident¶
Description¶
Lists all engagements that have happened in an incident.
Usage¶
Arguments¶
NextTokenThe pagination token to continue to the next page of results.
MaxResultsThe maximum number of engagements per page of results.
IncidentIdThe Amazon Resource Name (ARN) of the incident you're listing engagements for.
TimeRangeValueThe time range to lists engagements for an incident.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Engagements = list(
list(
EngagementArn = "string",
ContactArn = "string",
Sender = "string",
IncidentId = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
StopTime = as.POSIXct(
"2015-01-01"
)
)
)
)