List Map Runs
sfn_list_map_runs | R Documentation |
Lists all Map Runs that were started by a given state machine execution¶
Description¶
Lists all Map Runs that were started by a given state machine execution.
Use this API action to obtain Map Run ARNs, and then call
describe_map_run
to obtain more information, if needed.
Usage¶
sfn_list_map_runs(executionArn, maxResults, nextToken)
Arguments¶
executionArn |
[required] The Amazon Resource Name (ARN) of the execution for which the Map Runs must be listed. |
maxResults |
The maximum number of results that are returned per call. You can
use This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum. |
nextToken |
If |
Value¶
A list with the following syntax:
list(
mapRuns = list(
list(
executionArn = "string",
mapRunArn = "string",
stateMachineArn = "string",
startDate = as.POSIXct(
"2015-01-01"
),
stopDate = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_map_runs(
executionArn = "string",
maxResults = 123,
nextToken = "string"
)