Interface CfnScalingPolicy.TargetTrackingMetricStatProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScalingPolicy.TargetTrackingMetricStatProperty.Jsii$Proxy
- Enclosing class:
CfnScalingPolicy
TargetTrackingMetricStat is a property of the AWS::ApplicationAutoScaling::ScalingPolicy TargetTrackingMetricDataQuery property type.
For more information about the CloudWatch terminology below, see Amazon CloudWatch concepts in the Amazon CloudWatch User Guide .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.applicationautoscaling.*;
TargetTrackingMetricStatProperty targetTrackingMetricStatProperty = TargetTrackingMetricStatProperty.builder()
.metric(TargetTrackingMetricProperty.builder()
.dimensions(List.of(TargetTrackingMetricDimensionProperty.builder()
.name("name")
.value("value")
.build()))
.metricName("metricName")
.namespace("namespace")
.build())
.stat("stat")
.unit("unit")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScalingPolicy.TargetTrackingMetricStatPropertystatic final classAn implementation forCfnScalingPolicy.TargetTrackingMetricStatProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMetric
The CloudWatch metric to return, including the metric name, namespace, and dimensions.To get the exact metric name, namespace, and dimensions, inspect the Metric object that is returned by a call to ListMetrics .
Returns union: either
IResolvableorCfnScalingPolicy.TargetTrackingMetricProperty- See Also:
-
getStat
The statistic to return.It can include any CloudWatch statistic or extended statistic. For a list of valid values, see the table in Statistics in the Amazon CloudWatch User Guide .
The most commonly used metric for scaling is
Average.- See Also:
-
getUnit
The unit to use for the returned data points.For a complete list of the units that CloudWatch supports, see the MetricDatum data type in the Amazon CloudWatch API Reference .
- See Also:
-
builder
-