Use this action to inspect your lineage and discover relationships between entities
Source:R/sagemaker_operations.R
sagemaker_query_lineage.RdUse this action to inspect your lineage and discover relationships between entities. For more information, see Querying Lineage Entities in the Amazon SageMaker Developer Guide.
See https://www.paws-r-sdk.com/docs/sagemaker_query_lineage/ for full documentation.
Usage
sagemaker_query_lineage(
StartArns = NULL,
Direction = NULL,
IncludeEdges = NULL,
Filters = NULL,
MaxDepth = NULL,
MaxResults = NULL,
NextToken = NULL
)Arguments
- StartArns
A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
- Direction
Associations between lineage entities have a direction. This parameter determines the direction from the StartArn(s) that the query traverses.
- IncludeEdges
Setting this value to
Trueretrieves not only the entities of interest but also the Associations and lineage entities on the path. Set toFalseto only return lineage entities that match your query.- Filters
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, orContext.CreatedBefore - Filter entities created before this date.
ModifiedBefore - Filter entities modified before this date.
ModifiedAfter - Filter entities modified after this date.
- MaxDepth
The maximum depth in lineage relationships from the
StartArnsthat are traversed. Depth is a measure of the number ofAssociationsfrom theStartArnentity to the matched results.- MaxResults
Limits the number of vertices in the results. Use the
NextTokenin a response to to retrieve the next page of results.- NextToken
Limits the number of vertices in the request. Use the
NextTokenin a response to to retrieve the next page of results.