Module Values_0.EdgeSource

An edge represents a directed connection between two Glue components that are part of the workflow the edge belongs to.

Sourcetype nonrec t = {
  1. sourceId : NameString.t option;
    (*

    The unique of the node within the workflow where the edge starts.

    *)
  2. destinationId : NameString.t option;
    (*

    The unique of the node within the workflow where the edge ends.

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