Interface CfnScalingPolicy.MetricDataQueryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScalingPolicy.MetricDataQueryProperty.Jsii$Proxy
Enclosing class:
CfnScalingPolicy

@Stability(Stable) public static interface CfnScalingPolicy.MetricDataQueryProperty extends software.amazon.jsii.JsiiSerializable
The metric data to return.

Also defines whether this call is returning data for one metric only, or whether it is performing a math expression on the values of returned metric statistics to create a new time series. A time series is a series of data points, each of which is associated with a timestamp.

MetricDataQuery is a property of the following property types:

Predictive scaling uses the time series data received from CloudWatch to understand how to schedule capacity based on your historical workload patterns.

You can call for a single metric or perform math expressions on multiple metrics. Any expressions used in a metric specification must eventually return a single time series.

For more information and examples, see Advanced predictive scaling policy configurations using custom metrics in the Amazon EC2 Auto Scaling 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.autoscaling.*;
 MetricDataQueryProperty metricDataQueryProperty = MetricDataQueryProperty.builder()
         .id("id")
         // the properties below are optional
         .expression("expression")
         .label("label")
         .metricStat(MetricStatProperty.builder()
                 .metric(MetricProperty.builder()
                         .metricName("metricName")
                         .namespace("namespace")
                         // the properties below are optional
                         .dimensions(List.of(MetricDimensionProperty.builder()
                                 .name("name")
                                 .value("value")
                                 .build()))
                         .build())
                 .stat("stat")
                 // the properties below are optional
                 .unit("unit")
                 .build())
         .returnData(false)
         .build();
 

See Also: