Interface CfnDomain.NodeConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.NodeConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.NodeConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration options for defining the setup of any node type within the cluster.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.opensearchservice.*;
NodeConfigProperty nodeConfigProperty = NodeConfigProperty.builder()
.count(123)
.enabled(false)
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.NodeConfigPropertystatic final classAn implementation forCfnDomain.NodeConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumbergetCount()The number of nodes of a specific type within the cluster.default ObjectA boolean value indicating whether a specific node type is active or inactive.default StringgetType()The instance type of a particular node within the cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCount
The number of nodes of a specific type within the cluster.- See Also:
-
getEnabled
A boolean value indicating whether a specific node type is active or inactive.Returns union: either
BooleanorIResolvable- See Also:
-
getType
The instance type of a particular node within the cluster.- See Also:
-
builder
-