List Response Plans
ssmincidents_list_response_plans | R Documentation |
Lists all response plans in your account¶
Description¶
Lists all response plans in your account.
Usage¶
ssmincidents_list_response_plans(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of response plans per page. |
nextToken |
The pagination token for the next set of items to return. (You received this token from a previous call.) |
Value¶
A list with the following syntax:
list(
nextToken = "string",
responsePlanSummaries = list(
list(
arn = "string",
displayName = "string",
name = "string"
)
)
)
Request syntax¶
svc$list_response_plans(
maxResults = 123,
nextToken = "string"
)