Module Values.FlowConnectionConfigurationSource

The configuration of the connection.

Sourcetype nonrec t = {
  1. data : FlowDataConnectionConfiguration.t option;
    (*

    The configuration of a connection originating from a node that isn't a Condition node.

    *)
  2. conditional : FlowConditionalConnectionConfiguration.t option;
    (*

    The configuration of a connection originating from a Condition node.

    *)
}
Sourceval make : ?data:??? -> ?conditional:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of FlowNodeOutputName.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