Interface CodeGenEdge.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CodeGenEdge.Builder,CodeGenEdge>,SdkBuilder<CodeGenEdge.Builder,CodeGenEdge>,SdkPojo
- Enclosing class:
- CodeGenEdge
public static interface CodeGenEdge.Builder extends SdkPojo, CopyableBuilder<CodeGenEdge.Builder,CodeGenEdge>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeGenEdge.Buildersource(String source)The ID of the node at which the edge starts.CodeGenEdge.Buildertarget(String target)The ID of the node at which the edge ends.CodeGenEdge.BuildertargetParameter(String targetParameter)The target of the edge.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
source
CodeGenEdge.Builder source(String source)
The ID of the node at which the edge starts.
- Parameters:
source- The ID of the node at which the edge starts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
CodeGenEdge.Builder target(String target)
The ID of the node at which the edge ends.
- Parameters:
target- The ID of the node at which the edge ends.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetParameter
CodeGenEdge.Builder targetParameter(String targetParameter)
The target of the edge.
- Parameters:
targetParameter- The target of the edge.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-