| Package | Description |
|---|---|
| software.amazon.awssdk.services.sfn.model |
| Modifier and Type | Method and Description |
|---|---|
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.aborted(Long aborted)
The total number of child workflow executions that were started by a Map Run and were running, but were
either stopped by the user or by Step Functions because the Map Run failed.
|
static MapRunExecutionCounts.Builder |
MapRunExecutionCounts.builder() |
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.failed(Long failed)
The total number of child workflow executions that were started by a Map Run, but have failed.
|
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.pending(Long pending)
The total number of child workflow executions that were started by a Map Run, but haven't started executing
yet.
|
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.resultsWritten(Long resultsWritten)
Returns the count of child workflow executions whose results were written by
ResultWriter. |
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.running(Long running)
The total number of child workflow executions that were started by a Map Run and are currently in-progress.
|
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.succeeded(Long succeeded)
The total number of child workflow executions that were started by a Map Run and have completed successfully.
|
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.timedOut(Long timedOut)
The total number of child workflow executions that were started by a Map Run and have timed out.
|
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.toBuilder() |
MapRunExecutionCounts.Builder |
MapRunExecutionCounts.Builder.total(Long total)
The total number of child workflow executions that were started by a Map Run.
|
| Modifier and Type | Method and Description |
|---|---|
static Class<? extends MapRunExecutionCounts.Builder> |
MapRunExecutionCounts.serializableBuilderClass() |
| Modifier and Type | Method and Description |
|---|---|
default DescribeMapRunResponse.Builder |
DescribeMapRunResponse.Builder.executionCounts(Consumer<MapRunExecutionCounts.Builder> executionCounts)
A JSON object that contains information about the total number of child workflow executions for the Map Run,
and the count of child workflow executions for each status, such as
failed and
succeeded. |
Copyright © 2023. All rights reserved.