#[non_exhaustive]pub struct QueryLineageInput {
pub start_arns: Option<Vec<String>>,
pub direction: Option<Direction>,
pub include_edges: Option<bool>,
pub filters: Option<QueryFilters>,
pub max_depth: Option<i32>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.start_arns: Option<Vec<String>>
A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
direction: Option<Direction>
Associations between lineage entities have a direction. This parameter determines the direction from the StartArn(s) that the query traverses.
include_edges: Option<bool>
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.
filters: Option<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.
max_depth: Option<i32>
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.
max_results: Option<i32>
Limits the number of vertices in the results. Use the NextToken
in a response to to retrieve the next page of results.
next_token: Option<String>
Limits the number of vertices in the request. Use the NextToken
in a response to to retrieve the next page of results.
Implementations§
source§impl QueryLineageInput
impl QueryLineageInput
sourcepub fn start_arns(&self) -> &[String]
pub fn start_arns(&self) -> &[String]
A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .start_arns.is_none()
.
sourcepub fn direction(&self) -> Option<&Direction>
pub fn direction(&self) -> Option<&Direction>
Associations between lineage entities have a direction. This parameter determines the direction from the StartArn(s) that the query traverses.
sourcepub fn include_edges(&self) -> Option<bool>
pub fn include_edges(&self) -> Option<bool>
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.
sourcepub fn filters(&self) -> Option<&QueryFilters>
pub fn filters(&self) -> Option<&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.
sourcepub fn max_depth(&self) -> Option<i32>
pub fn max_depth(&self) -> Option<i32>
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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Limits the number of vertices in the results. Use the NextToken
in a response to to retrieve the next page of results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Limits the number of vertices in the request. Use the NextToken
in a response to to retrieve the next page of results.
source§impl QueryLineageInput
impl QueryLineageInput
sourcepub fn builder() -> QueryLineageInputBuilder
pub fn builder() -> QueryLineageInputBuilder
Creates a new builder-style object to manufacture QueryLineageInput
.
Trait Implementations§
source§impl Clone for QueryLineageInput
impl Clone for QueryLineageInput
source§fn clone(&self) -> QueryLineageInput
fn clone(&self) -> QueryLineageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QueryLineageInput
impl Debug for QueryLineageInput
source§impl PartialEq for QueryLineageInput
impl PartialEq for QueryLineageInput
source§fn eq(&self, other: &QueryLineageInput) -> bool
fn eq(&self, other: &QueryLineageInput) -> bool
self
and other
values to be equal, and is used
by ==
.