Interface CfnMapRunPropsMixin.MapRunItemCountsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMapRunPropsMixin.MapRunItemCountsProperty.Jsii$Proxy
- Enclosing class:
CfnMapRunPropsMixin
@Stability(Stable)
public static interface CfnMapRunPropsMixin.MapRunItemCountsProperty
extends software.amazon.jsii.JsiiSerializable
Contains details about items processed in all child workflow executions started by a Map Run.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.stepfunctions.*;
MapRunItemCountsProperty mapRunItemCountsProperty = MapRunItemCountsProperty.builder()
.aborted(123)
.failed(123)
.failuresNotRedrivable(123)
.pending(123)
.pendingRedrive(123)
.resultsWritten(123)
.running(123)
.succeeded(123)
.timedOut(123)
.total(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMapRunPropsMixin.MapRunItemCountsPropertystatic final classAn implementation forCfnMapRunPropsMixin.MapRunItemCountsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe total number of items processed in child workflow executions that were stopped.default NumberThe total number of items processed in child workflow executions that have failed.default NumberThe number of items in child workflow executions that cannot be redriven.default NumberThe total number of items to process in child workflow executions that haven't started running yet.default NumberThe number of unsuccessful items currently waiting to be redriven.default NumberThe count of items whose results were written by ResultWriter.default NumberThe total number of items being processed in child workflow executions that are currently in-progress.default NumberThe total number of items processed in child workflow executions that have completed successfully.default NumberThe total number of items processed in child workflow executions that have timed out.default NumbergetTotal()The total number of items processed in all the child workflow executions started by a Map Run.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAborted
The total number of items processed in child workflow executions that were stopped.- See Also:
-
getFailed
The total number of items processed in child workflow executions that have failed.- See Also:
-
getFailuresNotRedrivable
The number of items in child workflow executions that cannot be redriven.- See Also:
-
getPending
The total number of items to process in child workflow executions that haven't started running yet.- See Also:
-
getPendingRedrive
The number of unsuccessful items currently waiting to be redriven.- See Also:
-
getResultsWritten
The count of items whose results were written by ResultWriter.- See Also:
-
getRunning
The total number of items being processed in child workflow executions that are currently in-progress.- See Also:
-
getSucceeded
The total number of items processed in child workflow executions that have completed successfully.- See Also:
-
getTimedOut
The total number of items processed in child workflow executions that have timed out.- See Also:
-
getTotal
The total number of items processed in all the child workflow executions started by a Map Run.- See Also:
-
builder
-