Module Values.FlowDataConnectionConfigurationSource

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

Sourcetype nonrec t = {
  1. sourceOutput : FlowNodeOutputName.t;
    (*

    The name of the output in the source node that the connection begins from.

    *)
  2. targetInput : FlowNodeInputName.t;
    (*

    The name of the input in the target node that the connection ends at.

    *)
}
Sourceval context_ : string
Sourceval make : sourceOutput:FlowNodeOutputName.t -> targetInput:FlowNodeInputName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FlowNodeOutputName.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