Module Values.WorkflowExecutionOpenCountsSource

Contains the counts of open tasks, child workflow executions and timers for a workflow execution.

Sourcetype nonrec t = {
  1. openActivityTasks : Count.t option;
    (*

    The count of activity tasks whose status is OPEN.

    *)
  2. openDecisionTasks : OpenDecisionTasksCount.t option;
    (*

    The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.

    *)
  3. openTimers : Count.t option;
    (*

    The count of timers started by this workflow execution that have not fired yet.

    *)
  4. openChildWorkflowExecutions : Count.t option;
    (*

    The count of child workflow executions whose status is OPEN.

    *)
  5. openLambdaFunctions : Count.t option;
    (*

    The count of Lambda tasks whose status is OPEN.

    *)
}
Sourceval make : ?openActivityTasks:??? -> ?openDecisionTasks:??? -> ?openTimers:??? -> ?openChildWorkflowExecutions:??? -> ?openLambdaFunctions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Count.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