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: