#[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
impl StructuralPartialEq for QueryLineageInput
Auto Trait Implementations§
impl Freeze for QueryLineageInput
impl RefUnwindSafe for QueryLineageInput
impl Send for QueryLineageInput
impl Sync for QueryLineageInput
impl Unpin for QueryLineageInput
impl UnwindSafe for QueryLineageInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more