Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueryLineageRequest

import type { QueryLineageRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface QueryLineageRequest {
Direction?: Direction | null;
Filters?: QueryFilters | null;
IncludeEdges?: boolean | null;
MaxDepth?: number | null;
MaxResults?: number | null;
NextToken?: string | null;
StartArns?: string[] | null;
}

§Properties

§
Direction?: Direction | null
[src]

Associations between lineage entities have a direction. This parameter determines the direction from the StartArn(s) that the query traverses.

§
Filters?: QueryFilters | null
[src]

A set of filtering parameters that allow you to specify which entities should be returned.

  • Properties - Key-value pairs to match on the lineage entities' properties.
  • LineageTypes - A set of lineage entity types to match on. For example: TrialComponent, Artifact, or Context.
  • CreatedBefore - Filter entities created before this date.
  • ModifiedBefore - Filter entities modified before this date.
  • ModifiedAfter - Filter entities modified after this date.
§
IncludeEdges?: boolean | null
[src]

Setting this value to True retrieves not only the entities of interest but also the Associations and lineage entities on the path. Set to False to only return lineage entities that match your query.

§
MaxDepth?: number | null
[src]

The maximum depth in lineage relationships from the StartArns that are traversed. Depth is a measure of the number of Associations from the StartArn entity to the matched results.

§
MaxResults?: number | null
[src]

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

§
NextToken?: string | null
[src]

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

§
StartArns?: string[] | null
[src]

A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.