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: