Interface GetDataflowGraphResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetDataflowGraphResponse.Builder,GetDataflowGraphResponse>,GlueResponse.Builder,SdkBuilder<GetDataflowGraphResponse.Builder,GetDataflowGraphResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetDataflowGraphResponse
public static interface GetDataflowGraphResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetDataflowGraphResponse.Builder,GetDataflowGraphResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDataflowGraphResponse.BuilderdagEdges(Collection<CodeGenEdge> dagEdges)A list of the edges in the resulting DAG.GetDataflowGraphResponse.BuilderdagEdges(Consumer<CodeGenEdge.Builder>... dagEdges)A list of the edges in the resulting DAG.GetDataflowGraphResponse.BuilderdagEdges(CodeGenEdge... dagEdges)A list of the edges in the resulting DAG.GetDataflowGraphResponse.BuilderdagNodes(Collection<CodeGenNode> dagNodes)A list of the nodes in the resulting DAG.GetDataflowGraphResponse.BuilderdagNodes(Consumer<CodeGenNode.Builder>... dagNodes)A list of the nodes in the resulting DAG.GetDataflowGraphResponse.BuilderdagNodes(CodeGenNode... dagNodes)A list of the nodes in the resulting DAG.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dagNodes
GetDataflowGraphResponse.Builder dagNodes(Collection<CodeGenNode> dagNodes)
A list of the nodes in the resulting DAG.
- Parameters:
dagNodes- A list of the nodes in the resulting DAG.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dagNodes
GetDataflowGraphResponse.Builder dagNodes(CodeGenNode... dagNodes)
A list of the nodes in the resulting DAG.
- Parameters:
dagNodes- A list of the nodes in the resulting DAG.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dagNodes
GetDataflowGraphResponse.Builder dagNodes(Consumer<CodeGenNode.Builder>... dagNodes)
A list of the nodes in the resulting DAG.
This is a convenience method that creates an instance of theCodeGenNode.Builderavoiding the need to create one manually viaCodeGenNode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dagNodes(List.) - Parameters:
dagNodes- a consumer that will call methods onCodeGenNode.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dagNodes(java.util.Collection)
-
dagEdges
GetDataflowGraphResponse.Builder dagEdges(Collection<CodeGenEdge> dagEdges)
A list of the edges in the resulting DAG.
- Parameters:
dagEdges- A list of the edges in the resulting DAG.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dagEdges
GetDataflowGraphResponse.Builder dagEdges(CodeGenEdge... dagEdges)
A list of the edges in the resulting DAG.
- Parameters:
dagEdges- A list of the edges in the resulting DAG.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dagEdges
GetDataflowGraphResponse.Builder dagEdges(Consumer<CodeGenEdge.Builder>... dagEdges)
A list of the edges in the resulting DAG.
This is a convenience method that creates an instance of theCodeGenEdge.Builderavoiding the need to create one manually viaCodeGenEdge.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dagEdges(List.) - Parameters:
dagEdges- a consumer that will call methods onCodeGenEdge.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dagEdges(java.util.Collection)
-
-