class WarmPool (construct)
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AutoScaling.WarmPool |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#WarmPool |
Java | software.amazon.awscdk.services.autoscaling.WarmPool |
Python | aws_cdk.aws_autoscaling.WarmPool |
TypeScript (source) | aws-cdk-lib » aws_autoscaling » WarmPool |
Implements
IConstruct
, IDependable
, IResource
Define a warm pool.
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-lib';
declare const autoScalingGroup: autoscaling.AutoScalingGroup;
const warmPool = new autoscaling.WarmPool(this, 'MyWarmPool', {
autoScalingGroup: autoScalingGroup,
// the properties below are optional
maxGroupPreparedCapacity: 123,
minSize: 123,
poolState: autoscaling.PoolState.HIBERNATED,
reuseOnScaleIn: false,
});
Initializer
new WarmPool(scope: Construct, id: string, props: WarmPoolProps)
Parameters
- scope
Construct
- id
string
- props
Warm
Pool Props
Construct Props
Name | Type | Description |
---|---|---|
auto | IAuto | The Auto Scaling group to add the warm pool to. |
max | number | The maximum number of instances that are allowed to be in the warm pool or in any state except Terminated for the Auto Scaling group. |
min | number | The minimum number of instances to maintain in the warm pool. |
pool | Pool | The instance state to transition to after the lifecycle actions are complete. |
reuse | boolean | Indicates whether instances in the Auto Scaling group can be returned to the warm pool on scale in. |
autoScalingGroup
Type:
IAuto
The Auto Scaling group to add the warm pool to.
maxGroupPreparedCapacity?
Type:
number
(optional, default: max size of the Auto Scaling group)
The maximum number of instances that are allowed to be in the warm pool or in any state except Terminated for the Auto Scaling group.
If the value is not specified, Amazon EC2 Auto Scaling launches and maintains the difference between the group's maximum capacity and its desired capacity.
minSize?
Type:
number
(optional, default: 0)
The minimum number of instances to maintain in the warm pool.
poolState?
Type:
Pool
(optional, default: PoolState.STOPPED)
The instance state to transition to after the lifecycle actions are complete.
reuseOnScaleIn?
Type:
boolean
(optional, default: false)
Indicates whether instances in the Auto Scaling group can be returned to the warm pool on scale in.
If the value is not specified, instances in the Auto Scaling group will be terminated when the group scales in.
Properties
Name | Type | Description |
---|---|---|
env | Resource | The environment this resource belongs to. |
node | Node | The tree node. |
stack | Stack | The stack in which this resource is defined. |
env
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
node
Type:
Node
The tree node.
stack
Type:
Stack
The stack in which this resource is defined.
Methods
Name | Description |
---|---|
apply | Apply the given removal policy to this resource. |
to | Returns a string representation of this construct. |
RemovalPolicy(policy)
applypublic applyRemovalPolicy(policy: RemovalPolicy): void
Parameters
- policy
Removal
Policy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY
), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN
).
String()
topublic toString(): string
Returns
string
Returns a string representation of this construct.