Module Values.LoopControllerFlowNodeConfigurationSource

Contains configurations for the controller node of a DoWhile loop in the flow.

Sourcetype nonrec t = {
  1. continueCondition : FlowCondition.t;
    (*

    Specifies the condition that determines when the flow exits the DoWhile loop. The loop executes until this condition evaluates to true.

    *)
  2. maxIterations : LoopControllerFlowNodeConfigurationMaxIterationsInteger.t option;
    (*

    Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxIterations:??? -> continueCondition:FlowCondition.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LoopControllerFlowNodeConfigurationMaxIterationsInteger.t | `Structure of (string * [> `String of FlowConditionName.t ]) list ]) 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