interface AnomalyDetectorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APS.CfnAnomalyDetector.AnomalyDetectorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnAnomalyDetector_AnomalyDetectorConfigurationProperty |
Java | software.amazon.awscdk.services.aps.CfnAnomalyDetector.AnomalyDetectorConfigurationProperty |
Python | aws_cdk.aws_aps.CfnAnomalyDetector.AnomalyDetectorConfigurationProperty |
TypeScript | aws-cdk-lib » aws_aps » CfnAnomalyDetector » AnomalyDetectorConfigurationProperty |
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 { aws_aps as aps } from 'aws-cdk-lib';
const anomalyDetectorConfigurationProperty: aps.CfnAnomalyDetector.AnomalyDetectorConfigurationProperty = {
randomCutForest: {
query: 'query',
// the properties below are optional
ignoreNearExpectedFromAbove: {
amount: 123,
ratio: 123,
},
ignoreNearExpectedFromBelow: {
amount: 123,
ratio: 123,
},
sampleSize: 123,
shingleSize: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| random | IResolvable | Random | The Random Cut Forest algorithm configuration for anomaly detection. |
randomCutForest
Type:
IResolvable | Random
The Random Cut Forest algorithm configuration for anomaly detection.

.NET
Go
Java
Python
TypeScript