Interface MetricTargetTrackingProps
Properties for enabling tracking of an arbitrary metric.
stable
Synopsis
Properties
metric | Metric to track. |
targetValue | Value to keep the metric around. |
Properties
metric
Metric to track.
The metric must represent a utilization, so that if it's higher than the target value, your ASG should scale out, and if it's lower it should scale in.
stable
Declaration
readonly metric: cloudwatch.IMetric;
Property Value
cloudwatch.IMetric
targetValue
Value to keep the metric around.
stable
Declaration
readonly targetValue: number;
Property Value
number