Show / Hide Table of Contents

Class WarmPool

Define a warm pool.

Inheritance
System.Object
Resource
WarmPool
Implements
IResource
Constructs.IConstruct
Constructs.IDependable
Inherited Members
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(String, IArnComponents)
Resource.GetResourceNameAttribute(String)
Resource.Env
Resource.PhysicalName
Resource.Stack
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WarmPool : Resource, IResource
Syntax (vb)
Public Class WarmPool
    Inherits Resource
    Implements IResource
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 warmPool = new WarmPool(this, "MyWarmPool", new WarmPoolProps {
    AutoScalingGroup = autoScalingGroup,

    // the properties below are optional
    MaxGroupPreparedCapacity = 123,
    MinSize = 123,
    PoolState = PoolState.HIBERNATED,
    ReuseOnScaleIn = false
});

Synopsis

Constructors

WarmPool(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

WarmPool(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

WarmPool(Construct, String, IWarmPoolProps)

Constructors

WarmPool(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

protected WarmPool(ByRefValue reference)
Parameters
reference Amazon.JSII.Runtime.Deputy.ByRefValue

The Javascript-owned object reference

WarmPool(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

protected WarmPool(DeputyBase.DeputyProps props)
Parameters
props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps

The deputy props

WarmPool(Construct, String, IWarmPoolProps)

public WarmPool(Construct scope, string id, IWarmPoolProps props)
Parameters
scope Constructs.Construct
id System.String
props IWarmPoolProps

Implements

IResource
Constructs.IConstruct
Constructs.IDependable
Back to top Generated by DocFX