Module Values.MapRunItemCountsSource

Contains details about items that were processed in all of the child workflow executions that were started by a Map Run.

Sourcetype nonrec t = {
  1. pending : UnsignedLong.t option;
    (*

    The total number of items to process in child workflow executions that haven't started running yet.

    *)
  2. running : UnsignedLong.t option;
    (*

    The total number of items being processed in child workflow executions that are currently in-progress.

    *)
  3. succeeded : UnsignedLong.t option;
    (*

    The total number of items processed in child workflow executions that have completed successfully.

    *)
  4. failed : UnsignedLong.t option;
    (*

    The total number of items processed in child workflow executions that have failed.

    *)
  5. timedOut : UnsignedLong.t option;
    (*

    The total number of items processed in child workflow executions that have timed out.

    *)
  6. aborted : UnsignedLong.t option;
    (*

    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.

    *)
  7. total : UnsignedLong.t option;
    (*

    The total number of items processed in all the child workflow executions started by a Map Run.

    *)
  8. resultsWritten : UnsignedLong.t option;
    (*

    Returns the count of items whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

    *)
  9. failuresNotRedrivable : LongObject.t option;
    (*

    The number of FAILED, ABORTED, or TIMED_OUT items 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 of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.

    *)
  10. pendingRedrive : LongObject.t option;
    (*

    The number of unsuccessful items in child workflow executions currently waiting to be redriven.

    *)
}
Sourceval make : ?pending:??? -> ?running:??? -> ?succeeded:??? -> ?failed:??? -> ?timedOut:??? -> ?aborted:??? -> ?total:??? -> ?resultsWritten:??? -> ?failuresNotRedrivable:??? -> ?pendingRedrive:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of UnsignedLong.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t