Interface WorkflowGraph.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<WorkflowGraph.Builder,,WorkflowGraph> SdkBuilder<WorkflowGraph.Builder,,WorkflowGraph> SdkPojo
- Enclosing class:
 WorkflowGraph
public static interface WorkflowGraph.Builder
extends SdkPojo, CopyableBuilder<WorkflowGraph.Builder,WorkflowGraph> 
- 
Method Summary
Modifier and TypeMethodDescriptionedges(Collection<Edge> edges) A list of all the directed connections between the nodes belonging to the workflow.edges(Consumer<Edge.Builder>... edges) A list of all the directed connections between the nodes belonging to the workflow.A list of all the directed connections between the nodes belonging to the workflow.nodes(Collection<Node> nodes) A list of the the Glue components belong to the workflow represented as nodes.nodes(Consumer<Node.Builder>... nodes) A list of the the Glue components belong to the workflow represented as nodes.A list of the the Glue components belong to the workflow represented as nodes.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
nodes
A list of the the Glue components belong to the workflow represented as nodes.
- Parameters:
 nodes- A list of the the Glue components belong to the workflow represented as nodes.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
nodes
A list of the the Glue components belong to the workflow represented as nodes.
- Parameters:
 nodes- A list of the the Glue components belong to the workflow represented as nodes.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
nodes
A list of the the Glue components belong to the workflow represented as nodes.
This is a convenience method that creates an instance of theNode.Builderavoiding the need to create one manually viaNode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonodes(List<Node>).- Parameters:
 nodes- a consumer that will call methods onNode.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
edges
A list of all the directed connections between the nodes belonging to the workflow.
- Parameters:
 edges- A list of all the directed connections between the nodes belonging to the workflow.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
edges
A list of all the directed connections between the nodes belonging to the workflow.
- Parameters:
 edges- A list of all the directed connections between the nodes belonging to the workflow.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
edges
A list of all the directed connections between the nodes belonging to the workflow.
This is a convenience method that creates an instance of theEdge.Builderavoiding the need to create one manually viaEdge.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toedges(List<Edge>).- Parameters:
 edges- a consumer that will call methods onEdge.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -