Module Values.FlowConnectionSource

Contains information about a connection between two nodes in the flow.

Sourcetype nonrec t = {
  1. type_ : FlowConnectionType.t;
    (*

    Whether the source node that the connection begins from is a condition node (Conditional) or not (Data).

    *)
  2. name : FlowConnectionName.t;
    (*

    A name for the connection that you can reference.

    *)
  3. source : FlowNodeName.t;
    (*

    The node that the connection starts at.

    *)
  4. target : FlowNodeName.t;
    (*

    The node that the connection ends at.

    *)
  5. configuration : FlowConnectionConfiguration.t option;
    (*

    The configuration of the connection.

    *)
}
Sourceval context_ : string
Sourceval make : ?configuration:??? -> type_:FlowConnectionType.t -> name:FlowConnectionName.t -> source:FlowNodeName.t -> target:FlowNodeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FlowConnectionName.t | `Structure of (string * [> `Structure of (string * [> `String of FlowNodeOutputName.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