Interface EdgeStructure.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EdgeStructure.Builder,EdgeStructure>,SdkBuilder<EdgeStructure.Builder,EdgeStructure>,SdkPojo
- Enclosing class:
- EdgeStructure
public static interface EdgeStructure.Builder extends SdkPojo, CopyableBuilder<EdgeStructure.Builder,EdgeStructure>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdgeStructure.Buildercount(Long count)The number of instances of the edge in the graph.EdgeStructure.BuilderedgeProperties(String... edgeProperties)A list of the properties associated with the edge.EdgeStructure.BuilderedgeProperties(Collection<String> edgeProperties)A list of the properties associated with 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, sdkFields
-
-
-
-
Method Detail
-
count
EdgeStructure.Builder count(Long count)
The number of instances of the edge in the graph.
- Parameters:
count- The number of instances of the edge in the graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
edgeProperties
EdgeStructure.Builder edgeProperties(Collection<String> edgeProperties)
A list of the properties associated with the edge.
- Parameters:
edgeProperties- A list of the properties associated with the edge.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
edgeProperties
EdgeStructure.Builder edgeProperties(String... edgeProperties)
A list of the properties associated with the edge.
- Parameters:
edgeProperties- A list of the properties associated with the edge.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-