Interface CfnAnomalyDetector.AnomalyDetectorConfigurationProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.AnomalyDetectorConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.aps.*;
 AnomalyDetectorConfigurationProperty anomalyDetectorConfigurationProperty = AnomalyDetectorConfigurationProperty.builder()
         .randomCutForest(RandomCutForestConfigurationProperty.builder()
                 .query("query")
                 // the properties below are optional
                 .ignoreNearExpectedFromAbove(IgnoreNearExpectedProperty.builder()
                         .amount(123)
                         .ratio(123)
                         .build())
                 .ignoreNearExpectedFromBelow(IgnoreNearExpectedProperty.builder()
                         .amount(123)
                         .ratio(123)
                         .build())
                 .sampleSize(123)
                 .shingleSize(123)
                 .build())
         .build();
 

See Also: