Interface CfnNodegroup.WarmPoolConfigProperty

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

@Stability(Stable) public static interface CfnNodegroup.WarmPoolConfigProperty extends software.amazon.jsii.JsiiSerializable
The warm pool configuration for the node group.

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.eks.*;
 WarmPoolConfigProperty warmPoolConfigProperty = WarmPoolConfigProperty.builder()
         .enabled(false)
         .maxGroupPreparedCapacity(123)
         .minSize(123)
         .poolState("poolState")
         .reuseOnScaleIn(false)
         .build();
 

See Also: