Module Values.GetLineageEventOutputSource

Describes the lineage event.

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

    The ID of the domain.

    *)
  2. id : LineageEventIdentifier.t option;
    (*

    The ID of the lineage event.

    *)
  3. event : LineageEvent.t option;
    (*

    The lineage event details.

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

    The user who created the lineage event.

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

    The progressing status of the lineage event.

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

    The time of the lineage event.

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

    The timestamp of when the lineage event was created.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `UnauthorizedException of UnauthorizedException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainId:??? -> ?id:??? -> ?event:??? -> ?createdBy:??? -> ?processingStatus:??? -> ?eventTime:??? -> ?createdAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval of_header_and_body : ((string, DomainId.t) Awso.Import.List.Assoc.t * LineageEvent.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of LineageEvent.t | `Enum of string | `String of DomainId.t | `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