Interface ApplicationTargetGroupTrackingPolicyArgs

interface ApplicationTargetGroupTrackingPolicyArgs {
    disableScaleIn?: any;
    estimatedInstanceWarmup?: any;
    targetGroup: ApplicationTargetGroup;
    targetValue: Input<number>;
}

Hierarchy (view full)

Properties

disableScaleIn?: any

Indicates whether scaling in by the target tracking scaling policy is disabled. If scaling in is disabled, the target tracking scaling policy doesn't remove instances from the Auto Scaling group. Otherwise, the target tracking scaling policy can remove instances from the Auto Scaling group. Defaults to [false] if unspecified.

estimatedInstanceWarmup?: any

The estimated time, in seconds, until a newly launched instance will contribute CloudWatch metrics. Without a value, AWS will default to the group's specified cooldown period.

The target group to scale [AutoScalingGroup] in response to number of requests to. This must be a [TargetGroup] that the [AutoScalingGroup] was created with. These can be provided to the [AutoScalingGroup] using [AutoScalingGroupArgs.targetGroups].

targetValue: Input<number>

The target value for the metric.

Generated using TypeDoc