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
The configuration for the anomaly detection algorithm.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnomalyDetector.AnomalyDetectorConfigurationPropertystatic final classAn implementation forCfnAnomalyDetector.AnomalyDetectorConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Random Cut Forest algorithm configuration for anomaly detection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRandomCutForest
The Random Cut Forest algorithm configuration for anomaly detection.Returns union: either
IResolvableorCfnAnomalyDetector.RandomCutForestConfigurationProperty- See Also:
-
builder
-