#[non_exhaustive]pub struct QueryLineageOutputBuilder { /* private fields */ }
Expand description
A builder for QueryLineageOutput
.
Implementations§
source§impl QueryLineageOutputBuilder
impl QueryLineageOutputBuilder
sourcepub fn vertices(self, input: Vertex) -> Self
pub fn vertices(self, input: Vertex) -> Self
Appends an item to vertices
.
To override the contents of this collection use set_vertices
.
A list of vertices connected to the start entity(ies) in the lineage graph.
sourcepub fn set_vertices(self, input: Option<Vec<Vertex>>) -> Self
pub fn set_vertices(self, input: Option<Vec<Vertex>>) -> Self
A list of vertices connected to the start entity(ies) in the lineage graph.
sourcepub fn get_vertices(&self) -> &Option<Vec<Vertex>>
pub fn get_vertices(&self) -> &Option<Vec<Vertex>>
A list of vertices connected to the start entity(ies) in the lineage graph.
sourcepub fn edges(self, input: Edge) -> Self
pub fn edges(self, input: Edge) -> Self
Appends an item to edges
.
To override the contents of this collection use set_edges
.
A list of edges that connect vertices in the response.
sourcepub fn set_edges(self, input: Option<Vec<Edge>>) -> Self
pub fn set_edges(self, input: Option<Vec<Edge>>) -> Self
A list of edges that connect vertices in the response.
sourcepub fn get_edges(&self) -> &Option<Vec<Edge>>
pub fn get_edges(&self) -> &Option<Vec<Edge>>
A list of edges that connect vertices in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Limits the number of vertices in the response. Use the NextToken
in a response to to retrieve the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Limits the number of vertices in the response. Use the NextToken
in a response to to retrieve the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Limits the number of vertices in the response. Use the NextToken
in a response to to retrieve the next page of results.
sourcepub fn build(self) -> QueryLineageOutput
pub fn build(self) -> QueryLineageOutput
Consumes the builder and constructs a QueryLineageOutput
.
Trait Implementations§
source§impl Clone for QueryLineageOutputBuilder
impl Clone for QueryLineageOutputBuilder
source§fn clone(&self) -> QueryLineageOutputBuilder
fn clone(&self) -> QueryLineageOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QueryLineageOutputBuilder
impl Debug for QueryLineageOutputBuilder
source§impl Default for QueryLineageOutputBuilder
impl Default for QueryLineageOutputBuilder
source§fn default() -> QueryLineageOutputBuilder
fn default() -> QueryLineageOutputBuilder
source§impl PartialEq<QueryLineageOutputBuilder> for QueryLineageOutputBuilder
impl PartialEq<QueryLineageOutputBuilder> for QueryLineageOutputBuilder
source§fn eq(&self, other: &QueryLineageOutputBuilder) -> bool
fn eq(&self, other: &QueryLineageOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.