Interface CfnAnomalyDetector.RandomCutForestConfigurationProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.RandomCutForestConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for the Random Cut Forest algorithm used for anomaly detection in time-series 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.aps.*;
 RandomCutForestConfigurationProperty randomCutForestConfigurationProperty = 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();
 

See Also: