Module Values.PostLineageEventInputSource

Posts a data lineage event.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the domain where you want to post a data lineage event.

    *)
  2. event : LineageEvent.t;
    (*

    The data lineage event that you want to post. Only open-lineage run event are supported as events.

    *)
  3. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> domainIdentifier:DomainId.t -> event:LineageEvent.t -> unit -> t
Sourceval of_header_and_body : ((string, ClientToken.t) Awso.Import.List.Assoc.t * LineageEvent.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of LineageEvent.t | `String of DomainId.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