Module Values.GetLineageNodeOutputSource

Gets the data lineage node.

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

    The ID of the domain where you're getting the data lineage node.

    *)
  2. name : String_.t option;
    (*

    The name of the data lineage node.

    *)
  3. description : String_.t option;
    (*

    The description of the data lineage node.

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

    The timestamp at which the data lineage node was created.

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

    The user who created the data lineage node.

    *)
  6. updatedAt : UpdatedAt.t option;
    (*

    The timestamp at which the data lineage node was updated.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user who updated the data lineage node.

    *)
  8. id : LineageNodeId.t option;
    (*

    The ID of the data lineage node.

    *)
  9. typeName : String_.t option;
    (*

    The name of the type of the specified data lineage node.

    *)
  10. typeRevision : Revision.t option;
    (*

    The revision type of the specified data lineage node.

    *)
  11. sourceIdentifier : String_.t option;
    (*

    The source identifier of the data lineage node.

    *)
  12. eventTimestamp : Timestamp.t option;
    (*

    The timestamp of the event described in the data lineage node.

    *)
  13. formsOutput : FormOutputList.t option;
    (*

    The metadata of the specified data lineage node.

    *)
  14. upstreamNodes : LineageNodeReferenceList.t option;
    (*

    The upstream nodes of the specified data lineage node.

    *)
  15. downstreamNodes : LineageNodeReferenceList.t option;
    (*

    The downsteam nodes of the specified data lineage node.

    *)
}
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:??? -> ?name:??? -> ?description:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?id:??? -> ?typeName:??? -> ?typeRevision:??? -> ?sourceIdentifier:??? -> ?eventTimestamp:??? -> ?formsOutput:??? -> ?upstreamNodes:??? -> ?downstreamNodes:??? -> 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 to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FormName.t | `Timestamp of Timestamp.t ]) list ] list | `String of DomainId.t | `Timestamp of CreatedAt.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