Interface CfnWarmPoolProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWarmPoolProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-10T21:56:47.113Z") @Stability(Stable) public interface CfnWarmPoolProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnWarmPool.

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.autoscaling.*;
 CfnWarmPoolProps cfnWarmPoolProps = CfnWarmPoolProps.builder()
         .autoScalingGroupName("autoScalingGroupName")
         // the properties below are optional
         .instanceReusePolicy(InstanceReusePolicyProperty.builder()
                 .reuseOnScaleIn(false)
                 .build())
         .maxGroupPreparedCapacity(123)
         .minSize(123)
         .poolState("poolState")
         .build();
 

See Also: