Struct aws_sdk_glue::model::workflow_graph::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for WorkflowGraph.
Implementations§
source§impl Builder
impl Builder
sourcepub fn nodes(self, input: Node) -> Self
pub fn nodes(self, input: Node) -> Self
Appends an item to nodes.
To override the contents of this collection use set_nodes.
A list of the the Glue components belong to the workflow represented as nodes.
sourcepub fn set_nodes(self, input: Option<Vec<Node>>) -> Self
pub fn set_nodes(self, input: Option<Vec<Node>>) -> Self
A list of the the Glue components belong to the workflow represented as nodes.
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 all the directed connections between the nodes belonging to the workflow.
sourcepub fn set_edges(self, input: Option<Vec<Edge>>) -> Self
pub fn set_edges(self, input: Option<Vec<Edge>>) -> Self
A list of all the directed connections between the nodes belonging to the workflow.
sourcepub fn build(self) -> WorkflowGraph
pub fn build(self) -> WorkflowGraph
Consumes the builder and constructs a WorkflowGraph.