Module Values.LineageEventSummarySource

The data lineage event summary.

Sourcetype nonrec t = {
  1. id : LineageEventIdentifier.t option;
    (*

    The ID of the data lineage event.

    *)
  2. domainId : DomainId.t option;
    (*

    The domain ID of the lineage event.

    *)
  3. processingStatus : LineageEventProcessingStatus.t option;
    (*

    The processing status of the data lineage event.

    *)
  4. eventTime : Timestamp.t option;
    (*

    The time of the data lineage event.

    *)
  5. eventSummary : EventSummary.t option;
    (*

    The summary of the data lineate event.

    *)
  6. createdBy : CreatedBy.t option;
    (*

    The user who created the data lineage event.

    *)
  7. createdAt : CreatedAt.t option;
    (*

    The timestamp at which data lineage event was created.

    *)
}
Sourceval make : ?id:??? -> ?domainId:??? -> ?processingStatus:??? -> ?eventTime:??? -> ?eventSummary:??? -> ?createdBy:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LineageEventIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]) list | `Timestamp of Timestamp.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