Interface MapRunItemCounts.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MapRunItemCounts.Builder,MapRunItemCounts>,SdkBuilder<MapRunItemCounts.Builder,MapRunItemCounts>,SdkPojo
- Enclosing class:
- MapRunItemCounts
public static interface MapRunItemCounts.Builder extends SdkPojo, CopyableBuilder<MapRunItemCounts.Builder,MapRunItemCounts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MapRunItemCounts.Builderaborted(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.MapRunItemCounts.Builderfailed(Long failed)The total number of items processed in child workflow executions that have failed.MapRunItemCounts.BuilderfailuresNotRedrivable(Long failuresNotRedrivable)The number ofFAILED,ABORTED, orTIMED_OUTitems in child workflow executions that cannot be redriven because the execution status of those child workflows is terminal.MapRunItemCounts.Builderpending(Long pending)The total number of items to process in child workflow executions that haven't started running yet.MapRunItemCounts.BuilderpendingRedrive(Long pendingRedrive)The number of unsuccessful items in child workflow executions currently waiting to be redriven.MapRunItemCounts.BuilderresultsWritten(Long resultsWritten)Returns the count of items whose results were written byResultWriter.MapRunItemCounts.Builderrunning(Long running)The total number of items being processed in child workflow executions that are currently in-progress.MapRunItemCounts.Buildersucceeded(Long succeeded)The total number of items processed in child workflow executions that have completed successfully.MapRunItemCounts.BuildertimedOut(Long timedOut)The total number of items processed in child workflow executions that have timed out.MapRunItemCounts.Buildertotal(Long total)The total number of items processed in all the child workflow executions started by a Map Run.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
pending
MapRunItemCounts.Builder pending(Long pending)
The total number of items to process in child workflow executions that haven't started running yet.
- Parameters:
pending- The total number of items to process in child workflow executions that haven't started running yet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
running
MapRunItemCounts.Builder running(Long running)
The total number of items being processed in child workflow executions that are currently in-progress.
- Parameters:
running- The total number of items being processed in child workflow executions that are currently in-progress.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
succeeded
MapRunItemCounts.Builder succeeded(Long succeeded)
The total number of items processed in child workflow executions that have completed successfully.
- Parameters:
succeeded- The total number of items processed in child workflow executions that have completed successfully.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failed
MapRunItemCounts.Builder failed(Long failed)
The total number of items processed in child workflow executions that have failed.
- Parameters:
failed- The total number of items processed in child workflow executions that have failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timedOut
MapRunItemCounts.Builder timedOut(Long timedOut)
The total number of items processed in child workflow executions that have timed out.
- Parameters:
timedOut- The total number of items processed in child workflow executions that have timed out.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aborted
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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
total
MapRunItemCounts.Builder total(Long total)
The total number of items processed in all the child workflow executions started by a Map Run.
- Parameters:
total- The total number of items processed in all the child workflow executions started by a Map Run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resultsWritten
MapRunItemCounts.Builder resultsWritten(Long resultsWritten)
Returns the count of items whose results were written by
ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.- Parameters:
resultsWritten- Returns the count of items whose results were written byResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failuresNotRedrivable
MapRunItemCounts.Builder failuresNotRedrivable(Long failuresNotRedrivable)
The number of
FAILED,ABORTED, orTIMED_OUTitems in child workflow executions that cannot be redriven because the execution status of those child workflows is terminal. For example, child workflows with an execution status ofFAILED,ABORTED, orTIMED_OUTand aredriveStatusofNOT_REDRIVABLE.- Parameters:
failuresNotRedrivable- The number ofFAILED,ABORTED, orTIMED_OUTitems in child workflow executions that cannot be redriven because the execution status of those child workflows is terminal. For example, child workflows with an execution status ofFAILED,ABORTED, orTIMED_OUTand aredriveStatusofNOT_REDRIVABLE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pendingRedrive
MapRunItemCounts.Builder pendingRedrive(Long pendingRedrive)
The number of unsuccessful items in child workflow executions currently waiting to be redriven.
- Parameters:
pendingRedrive- The number of unsuccessful items in child workflow executions currently waiting to be redriven.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-