Struct aws_sdk_sagemaker::output::query_lineage_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for QueryLineageOutput
.
Implementations§
source§impl Builder
impl Builder
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 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 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 build(self) -> QueryLineageOutput
pub fn build(self) -> QueryLineageOutput
Consumes the builder and constructs a QueryLineageOutput
.