interface InstanceReusePolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AutoScaling.CfnWarmPoolPropsMixin.InstanceReusePolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsautoscaling#CfnWarmPoolPropsMixin_InstanceReusePolicyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.autoscaling.CfnWarmPoolPropsMixin.InstanceReusePolicyProperty |
Python | aws_cdk.cfn_property_mixins.aws_autoscaling.CfnWarmPoolPropsMixin.InstanceReusePolicyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_autoscaling » CfnWarmPoolPropsMixin » InstanceReusePolicyProperty |
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 { aws_autoscaling as autoscaling } from '@aws-cdk/cfn-property-mixins';
const instanceReusePolicyProperty: autoscaling.CfnWarmPoolPropsMixin.InstanceReusePolicyProperty = {
reuseOnScaleIn: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| reuse | boolean | IResolvable | Specifies whether instances in the Auto Scaling group can be returned to the warm pool on scale in. |
reuseOnScaleIn?
Type:
boolean | IResolvable
(optional)
Specifies whether instances in the Auto Scaling group can be returned to the warm pool on scale in.

.NET
Go
Java
Python
TypeScript