Module Values_2.QueryLineageResponseSource

Use this action to inspect your lineage and discover relationships between entities. For more information, see Querying Lineage Entities in the Amazon SageMaker Developer Guide.

Sourcetype nonrec t = {
  1. vertices : Vertices.t option;
    (*

    A list of vertices connected to the start entity(ies) in the lineage graph.

    *)
  2. edges : Edges.t option;
    (*

    A list of edges that connect vertices in the response.

    *)
  3. nextToken : String8192.t option;
    (*

    Limits the number of vertices in the response. Use the NextToken in a response to to retrieve the next page of results.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?vertices:??? -> ?edges:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of Values_0.AssociationEntityArn.t ]) list ] list | `String of String8192.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