Interface CfnDomain.NodeOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.NodeOptionProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.NodeOptionProperty
extends software.amazon.jsii.JsiiSerializable
Container for specifying 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.*;
NodeOptionProperty nodeOptionProperty = NodeOptionProperty.builder()
.nodeConfig(NodeConfigProperty.builder()
.count(123)
.enabled(false)
.type("type")
.build())
.nodeType("nodeType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.NodeOptionPropertystatic final classAn implementation forCfnDomain.NodeOptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNodeConfig
Container for specifying configuration of any node type.- See Also:
-
getNodeType
Container for node type like coordinating.- See Also:
-
builder
-