Interface NodeStructure.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeStructure.Builder,NodeStructure>,SdkBuilder<NodeStructure.Builder,NodeStructure>,SdkPojo
- Enclosing class:
- NodeStructure
public static interface NodeStructure.Builder extends SdkPojo, CopyableBuilder<NodeStructure.Builder,NodeStructure>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeStructure.Buildercount(Long count)Number of nodes that have this specific structure.NodeStructure.BuilderdistinctOutgoingEdgeLabels(String... distinctOutgoingEdgeLabels)A list of distinct outgoing edge labels present in this specific structure.NodeStructure.BuilderdistinctOutgoingEdgeLabels(Collection<String> distinctOutgoingEdgeLabels)A list of distinct outgoing edge labels present in this specific structure.NodeStructure.BuildernodeProperties(String... nodeProperties)A list of the node properties present in this specific structure.NodeStructure.BuildernodeProperties(Collection<String> nodeProperties)A list of the node properties present in this specific structure.-
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
-
count
NodeStructure.Builder count(Long count)
Number of nodes that have this specific structure.
- Parameters:
count- Number of nodes that have this specific structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeProperties
NodeStructure.Builder nodeProperties(Collection<String> nodeProperties)
A list of the node properties present in this specific structure.
- Parameters:
nodeProperties- A list of the node properties present in this specific structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeProperties
NodeStructure.Builder nodeProperties(String... nodeProperties)
A list of the node properties present in this specific structure.
- Parameters:
nodeProperties- A list of the node properties present in this specific structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
distinctOutgoingEdgeLabels
NodeStructure.Builder distinctOutgoingEdgeLabels(Collection<String> distinctOutgoingEdgeLabels)
A list of distinct outgoing edge labels present in this specific structure.
- Parameters:
distinctOutgoingEdgeLabels- A list of distinct outgoing edge labels present in this specific structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
distinctOutgoingEdgeLabels
NodeStructure.Builder distinctOutgoingEdgeLabels(String... distinctOutgoingEdgeLabels)
A list of distinct outgoing edge labels present in this specific structure.
- Parameters:
distinctOutgoingEdgeLabels- A list of distinct outgoing edge labels present in this specific structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-