Class: Aws::SageMaker::Types::QueryLineageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::QueryLineageRequest
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#direction ⇒ String
Associations between lineage entities have a direction.
-
#filters ⇒ Types::QueryFilters
A set of filtering parameters that allow you to specify which entities should be returned.
-
#include_edges ⇒ Boolean
Setting this value to
Trueretrieves not only the entities of interest but also the [Associations][1] and lineage entities on the path. -
#max_depth ⇒ Integer
The maximum depth in lineage relationships from the
StartArnsthat are traversed. -
#max_results ⇒ Integer
Limits the number of vertices in the results.
-
#next_token ⇒ String
Limits the number of vertices in the request.
-
#start_arns ⇒ Array<String>
A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
Instance Attribute Details
#direction ⇒ String
Associations between lineage entities have a direction. This parameter determines the direction from the StartArn(s) that the query traverses.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Types::QueryFilters
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.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#include_edges ⇒ Boolean
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.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_depth ⇒ Integer
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.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Limits the number of vertices in the results. Use the NextToken in
a response to to retrieve the next page of results.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Limits the number of vertices in the request. Use the NextToken in
a response to to retrieve the next page of results.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#start_arns ⇒ Array<String>
A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43047 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |