Show / Hide Table of Contents

Class RequestCountScalingProps

Properties for enabling scaling based on request/second.

Inheritance
System.Object
RequestCountScalingProps
Implements
IRequestCountScalingProps
IBaseTargetTrackingProps
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public class RequestCountScalingProps : Object, IRequestCountScalingProps, IBaseTargetTrackingProps
Syntax (vb)
Public Class RequestCountScalingProps
    Inherits Object
    Implements IRequestCountScalingProps, IBaseTargetTrackingProps
Remarks

ExampleMetadata: infused

Examples
AutoScalingGroup autoScalingGroup;


autoScalingGroup.ScaleOnRequestCount("LimitRPS", new RequestCountScalingProps {
    TargetRequestsPerSecond = 1000
});

Synopsis

Constructors

RequestCountScalingProps()

Properties

Cooldown

Period after a scaling completes before another scaling activity can start.

DisableScaleIn

Indicates whether scale in by the target tracking policy is disabled.

EstimatedInstanceWarmup

Estimated time until a newly launched instance can send metrics to CloudWatch.

TargetRequestsPerMinute

Target average requests/minute on each instance.

TargetRequestsPerSecond

(deprecated) Target average requests/seconds on each instance.

Constructors

RequestCountScalingProps()

public RequestCountScalingProps()

Properties

Cooldown

Period after a scaling completes before another scaling activity can start.

public Duration Cooldown { get; set; }
Property Value

Duration

Remarks

Default: - The default cooldown configured on the AutoScalingGroup.

DisableScaleIn

Indicates whether scale in by the target tracking policy is disabled.

public Nullable<bool> DisableScaleIn { get; set; }
Property Value

System.Nullable<System.Boolean>

Remarks

If the value is true, scale in is disabled and the target tracking policy won't remove capacity from the autoscaling group. Otherwise, scale in is enabled and the target tracking policy can remove capacity from the group.

Default: false

EstimatedInstanceWarmup

Estimated time until a newly launched instance can send metrics to CloudWatch.

public Duration EstimatedInstanceWarmup { get; set; }
Property Value

Duration

Remarks

Default: - Same as the cooldown.

TargetRequestsPerMinute

Target average requests/minute on each instance.

public Nullable<double> TargetRequestsPerMinute { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - Specify exactly one of 'targetRequestsPerMinute' and 'targetRequestsPerSecond'

TargetRequestsPerSecond

(deprecated) Target average requests/seconds on each instance.

public Nullable<double> TargetRequestsPerSecond { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - Specify exactly one of 'targetRequestsPerMinute' and 'targetRequestsPerSecond'

Stability: Deprecated

Implements

IRequestCountScalingProps
IBaseTargetTrackingProps
Back to top Generated by DocFX