Interface NodeOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NodeOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:46.096Z")
@Stability(Stable)
public interface NodeOptions
extends software.amazon.jsii.JsiiSerializable
Configuration for node options in OpenSearch domain.
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.*;
NodeOptions nodeOptions = NodeOptions.builder()
.nodeConfig(NodeConfig.builder()
.count(123)
.enabled(false)
.type("type")
.build())
.nodeType(NodeType.COORDINATOR)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forNodeOptionsstatic final classAn implementation forNodeOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic NodeOptions.Builderbuilder()Configuration for the node type.The type of node.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNodeConfig
Configuration for the node type. -
getNodeType
The type of node.Currently only 'coordinator' is supported.
-
builder
- Returns:
- a
NodeOptions.BuilderofNodeOptions
-