Values.MapRunExecutionCountsSourceContains details about all of the child workflow executions started by a Map Run.
type nonrec t = {pending : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
*)running : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run and are currently in-progress.
*)succeeded : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run and have completed successfully.
*)failed : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run, but have failed.
*)timedOut : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run and have timed out.
*)aborted : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
*)total : UnsignedLong.t option;The total number of child workflow executions that were started by a Map Run.
*)resultsWritten : UnsignedLong.t option;Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.
*)failuresNotRedrivable : LongObject.t option;The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.
*)pendingRedrive : LongObject.t option;The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.
*)}