interface AnomalyDetectorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnAnomalyDetectorPropsMixin_AnomalyDetectorConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » 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 { aws_aps as aps } from '@aws-cdk/cfn-property-mixins';
const anomalyDetectorConfigurationProperty: aps.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