Module Values_2.EdgeSource

A directed edge connecting two lineage entities.

Sourcetype nonrec t = {
  1. sourceArn : Values_0.AssociationEntityArn.t option;
    (*

    The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.

    *)
  2. destinationArn : Values_0.AssociationEntityArn.t option;
    (*

    The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.

    *)
  3. associationType : Values_0.AssociationEdgeType.t option;
    (*

    The type of the Association(Edge) between the source and destination. For example ContributedTo, Produced, or DerivedFrom.

    *)
}
Sourceval make : ?sourceArn:??? -> ?destinationArn:??? -> ?associationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.AssociationEntityArn.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