Interface CfnMapRunPropsMixin.MapRunExecutionCountsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMapRunPropsMixin.MapRunExecutionCountsProperty.Jsii$Proxy
- Enclosing class:
CfnMapRunPropsMixin
@Stability(Stable)
public static interface CfnMapRunPropsMixin.MapRunExecutionCountsProperty
extends software.amazon.jsii.JsiiSerializable
Contains details about 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.*;
MapRunExecutionCountsProperty mapRunExecutionCountsProperty = MapRunExecutionCountsProperty.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.MapRunExecutionCountsPropertystatic final classAn implementation forCfnMapRunPropsMixin.MapRunExecutionCountsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe total number of child workflow executions that were stopped.default NumberThe total number of child workflow executions that have failed.default NumberThe number of child workflow executions that cannot be redriven.default NumberThe total number of child workflow executions that haven't started executing yet.default NumberThe number of unsuccessful child workflow executions waiting to be redriven.default NumberThe count of child workflow executions whose results were written by ResultWriter.default NumberThe total number of child workflow executions that are currently in-progress.default NumberThe total number of child workflow executions that have completed successfully.default NumberThe total number of child workflow executions that have timed out.default NumbergetTotal()The total number of 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 child workflow executions that were stopped.- See Also:
-
getFailed
The total number of child workflow executions that have failed.- See Also:
-
getFailuresNotRedrivable
The number of child workflow executions that cannot be redriven.- See Also:
-
getPending
The total number of child workflow executions that haven't started executing yet.- See Also:
-
getPendingRedrive
The number of unsuccessful child workflow executions waiting to be redriven.- See Also:
-
getResultsWritten
The count of child workflow executions whose results were written by ResultWriter.- See Also:
-
getRunning
The total number of child workflow executions that are currently in-progress.- See Also:
-
getSucceeded
The total number of child workflow executions that have completed successfully.- See Also:
-
getTimedOut
The total number of child workflow executions that have timed out.- See Also:
-
getTotal
The total number of child workflow executions started by a Map Run.- See Also:
-
builder
-