Interface IWarmPoolProps
- Namespace
- Amazon.CDK.AWS.AutoScaling
- Assembly
- Amazon.CDK.AWS.AutoScaling.dll
Properties for a warm pool.
public interface IWarmPoolProps : IWarmPoolOptions
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AutoScaling;
AutoScalingGroup autoScalingGroup;
var warmPoolProps = new WarmPoolProps {
AutoScalingGroup = autoScalingGroup,
// the properties below are optional
MaxGroupPreparedCapacity = 123,
MinSize = 123,
PoolState = PoolState.HIBERNATED,
ReuseOnScaleIn = false
};
Remarks
ExampleMetadata: fixture=_generated
Properties
AutoScalingGroup
The Auto Scaling group to add the warm pool to.
IAutoScalingGroup AutoScalingGroup { get; }