#[non_exhaustive]pub struct QueryLineageInput { /* private fields */ }
Implementations§
source§impl QueryLineageInput
impl QueryLineageInput
sourcepub fn start_arns(&self) -> Option<&[String]>
pub fn start_arns(&self) -> Option<&[String]>
A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
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
.
source§impl QueryLineageInput
impl QueryLineageInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<QueryLineage, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<QueryLineage, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<QueryLineage
>
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<QueryLineageInput> for QueryLineageInput
impl PartialEq<QueryLineageInput> 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 ==
.