interface AnomalyDetectorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnAnomalyDetectorPropsMixin_AnomalyDetectorConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnAnomalyDetectorPropsMixin » 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 { mixins as aps_mixins } from '@aws-cdk/mixins-preview/aws-aps';
const anomalyDetectorConfigurationProperty: aps_mixins.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty = {
randomCutForest: {
ignoreNearExpectedFromAbove: {
amount: 123,
ratio: 123,
},
ignoreNearExpectedFromBelow: {
amount: 123,
ratio: 123,
},
query: 'query',
sampleSize: 123,
shingleSize: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| random | IResolvable | Random | The Random Cut Forest algorithm configuration for anomaly detection. |
randomCutForest?
Type:
IResolvable | Random
(optional)
The Random Cut Forest algorithm configuration for anomaly detection.

.NET
Go
Java
Python
TypeScript