Interface NodeConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeConfig.Builder,NodeConfig>,SdkBuilder<NodeConfig.Builder,NodeConfig>,SdkPojo
- Enclosing class:
- NodeConfig
public static interface NodeConfig.Builder extends SdkPojo, CopyableBuilder<NodeConfig.Builder,NodeConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeConfig.Buildercount(Integer count)The number of nodes of a particular node type in the cluster.NodeConfig.Builderenabled(Boolean enabled)A boolean that indicates whether a particular node type is enabled or not.NodeConfig.Buildertype(String type)The instance type of a particular node type in the cluster.NodeConfig.Buildertype(OpenSearchPartitionInstanceType type)The instance type of a particular node type in the cluster.-
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
-
enabled
NodeConfig.Builder enabled(Boolean enabled)
A boolean that indicates whether a particular node type is enabled or not.
- Parameters:
enabled- A boolean that indicates whether a particular node type is enabled or not.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
NodeConfig.Builder type(String type)
The instance type of a particular node type in the cluster.
- Parameters:
type- The instance type of a particular node type in the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpenSearchPartitionInstanceType,OpenSearchPartitionInstanceType
-
type
NodeConfig.Builder type(OpenSearchPartitionInstanceType type)
The instance type of a particular node type in the cluster.
- Parameters:
type- The instance type of a particular node type in the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpenSearchPartitionInstanceType,OpenSearchPartitionInstanceType
-
count
NodeConfig.Builder count(Integer count)
The number of nodes of a particular node type in the cluster.
- Parameters:
count- The number of nodes of a particular node type in the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-