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 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

      WorkflowGraph.Builder nodes(Node... 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 the Node.Builder avoiding the need to create one manually via Node.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to nodes(List<Node>).

      Parameters:
      nodes - a consumer that will call methods on Node.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

      WorkflowGraph.Builder edges(Edge... 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 the Edge.Builder avoiding the need to create one manually via Edge.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to edges(List<Edge>).

      Parameters:
      edges - a consumer that will call methods on Edge.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: