Show / Hide Table of Contents

Interface IWarmPoolProps

Properties for a warm pool.

Inherited Members
IWarmPoolOptions.MaxGroupPreparedCapacity
IWarmPoolOptions.MinSize
IWarmPoolOptions.PoolState
IWarmPoolOptions.ReuseOnScaleIn
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IWarmPoolProps : IWarmPoolOptions
Syntax (vb)
Public Interface IWarmPoolProps
    Inherits IWarmPoolOptions
Remarks

ExampleMetadata: fixture=_generated

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
};

Synopsis

Properties

AutoScalingGroup

The Auto Scaling group to add the warm pool to.

Properties

AutoScalingGroup

The Auto Scaling group to add the warm pool to.

IAutoScalingGroup AutoScalingGroup { get; }
Property Value

IAutoScalingGroup

Back to top Generated by DocFX