Interface CfnNodegroup.ScalingConfigProperty

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

@Stability(Stable) public static interface CfnNodegroup.ScalingConfigProperty extends software.amazon.jsii.JsiiSerializable
An object representing the scaling configuration details for the Auto Scaling group that is associated with your node group.

When creating a node group, you must specify all or none of the properties. When updating a node group, you can specify any or none of the properties.

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.*;
 ScalingConfigProperty scalingConfigProperty = ScalingConfigProperty.builder()
         .desiredSize(123)
         .maxSize(123)
         .minSize(123)
         .build();
 

See Also: