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
True
retrieves 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
StartArns
that 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 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.
40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40072 class QueryLineageRequest < Struct.new( :start_arns, :direction, :include_edges, :filters, :max_depth, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |