Interface CfnDomainPropsMixin.NodeOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainPropsMixin.NodeOptionProperty.Jsii$Proxy
- Enclosing class:
CfnDomainPropsMixin
@Stability(Stable)
public static interface CfnDomainPropsMixin.NodeOptionProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for defining the node type within a 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.cfnpropertymixins.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 forCfnDomainPropsMixin.NodeOptionPropertystatic final classAn implementation forCfnDomainPropsMixin.NodeOptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNodeConfig
Configuration options for defining the setup of any node type.Returns union: either
IResolvableorCfnDomainPropsMixin.NodeConfigProperty- See Also:
-
getNodeType
Defines the type of node, such as coordinating nodes.- See Also:
-
builder
-