Interface CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnomalyDetectorPropsMixin
@Stability(Stable)
public static interface CfnAnomalyDetectorPropsMixin.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.cfnpropertymixins.services.aps.*;
AnomalyDetectorConfigurationProperty anomalyDetectorConfigurationProperty = AnomalyDetectorConfigurationProperty.builder()
.randomCutForest(RandomCutForestConfigurationProperty.builder()
.ignoreNearExpectedFromAbove(IgnoreNearExpectedProperty.builder()
.amount(123)
.ratio(123)
.build())
.ignoreNearExpectedFromBelow(IgnoreNearExpectedProperty.builder()
.amount(123)
.ratio(123)
.build())
.query("query")
.sampleSize(123)
.shingleSize(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty -
Method Summary
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
IResolvableorCfnAnomalyDetectorPropsMixin.RandomCutForestConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty.Builder builder()
-