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
Container for specifying configuration of any node type.
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 particular node type in the cluster.default ObjectA boolean that indicates whether a particular node type is enabled or not.default StringgetType()The instance type of a particular node type in the cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCount
The number of nodes of a particular node type in the cluster.- See Also:
-
getEnabled
A boolean that indicates whether a particular node type is enabled or not.- See Also:
-
getType
The instance type of a particular node type in the cluster.- See Also:
-
builder
-