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