List Actions
fis_list_actions | R Documentation |
Lists the available FIS actions¶
Description¶
Lists the available FIS actions.
Usage¶
fis_list_actions(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
nextToken |
The token for the next page of results. |
Value¶
A list with the following syntax:
list(
actions = list(
list(
id = "string",
arn = "string",
description = "string",
targets = list(
list(
resourceType = "string"
)
),
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_actions(
maxResults = 123,
nextToken = "string"
)