Interface CfnDomainPropsMixin.NodeConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomainPropsMixin.NodeConfigProperty.Jsii$Proxy
Enclosing class:
CfnDomainPropsMixin

@Stability(Stable) public static interface CfnDomainPropsMixin.NodeConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration options for defining the setup of any node type within the 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.*;
 NodeConfigProperty nodeConfigProperty = NodeConfigProperty.builder()
         .count(123)
         .enabled(false)
         .type("type")
         .build();
 

See Also: