Module Values.ConditionFlowNodeConfigurationSource

Defines a condition node in your flow. You can specify conditions that determine which node comes next in the flow. For more information, see Node types in a flow in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. conditions : FlowConditions.t;
    (*

    An array of conditions. Each member contains the name of a condition and an expression that defines the condition.

    *)
}
Sourceval context_ : string
Sourceval make : conditions:FlowConditions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FlowConditionName.t ]) list ] 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