Interface CfnAnomalyDetector.MetricProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.MetricProperty extends software.amazon.jsii.JsiiSerializable
A calculation made by contrasting a measure and a dimension from your source data.

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.lookoutmetrics.*;
 MetricProperty metricProperty = MetricProperty.builder()
         .aggregationFunction("aggregationFunction")
         .metricName("metricName")
         // the properties below are optional
         .namespace("namespace")
         .build();
 

See Also: