Interface CfnWarmPoolPropsMixin.InstanceReusePolicyProperty

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

@Stability(Stable) public static interface CfnWarmPoolPropsMixin.InstanceReusePolicyProperty extends software.amazon.jsii.JsiiSerializable
A structure that specifies an instance reuse policy for the InstanceReusePolicy property of the AWS::AutoScaling::WarmPool resource.

For more information, see Warm pools for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide .

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.autoscaling.*;
 InstanceReusePolicyProperty instanceReusePolicyProperty = InstanceReusePolicyProperty.builder()
         .reuseOnScaleIn(false)
         .build();
 

See Also: