Show / Hide Table of Contents

Interface IRenderSignalsOptions

Input for Signals.renderCreationPolicy.

Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IRenderSignalsOptions
Syntax (vb)
Public Interface IRenderSignalsOptions
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;

var renderSignalsOptions = new RenderSignalsOptions {
    DesiredCapacity = 123,
    MinCapacity = 123
};

Synopsis

Properties

DesiredCapacity

The desiredCapacity of the ASG.

MinCapacity

The minSize of the ASG.

Properties

DesiredCapacity

The desiredCapacity of the ASG.

virtual Nullable<double> DesiredCapacity { get; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - desired capacity not configured

MinCapacity

The minSize of the ASG.

virtual Nullable<double> MinCapacity { get; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - minCapacity not configured

Back to top Generated by DocFX