Show / Hide Table of Contents

Class BaseTargetTrackingProps

Base interface for target tracking props.

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

Contains the attributes that are common to target tracking policies, except the ones relating to the metric and to the scalable target.

This interface is reused by more specific target tracking props objects.

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;
using Amazon.CDK;
var baseTargetTrackingProps = new BaseTargetTrackingProps {
    Cooldown = Duration.Minutes(30),
    DisableScaleIn = false,
    EstimatedInstanceWarmup = Duration.Minutes(30)
};

Synopsis

Constructors

BaseTargetTrackingProps()

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.

Constructors

BaseTargetTrackingProps()

public BaseTargetTrackingProps()

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.

Implements

IBaseTargetTrackingProps
Back to top Generated by DocFX