interface IgnoreNearExpectedProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APS.CfnAnomalyDetector.IgnoreNearExpectedProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnAnomalyDetector_IgnoreNearExpectedProperty |
Java | software.amazon.awscdk.services.aps.CfnAnomalyDetector.IgnoreNearExpectedProperty |
Python | aws_cdk.aws_aps.CfnAnomalyDetector.IgnoreNearExpectedProperty |
TypeScript | aws-cdk-lib » aws_aps » CfnAnomalyDetector » IgnoreNearExpectedProperty |
Configuration for threshold settings that determine when values near expected values should be ignored during anomaly detection.
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 ignoreNearExpectedProperty: aps.CfnAnomalyDetector.IgnoreNearExpectedProperty = {
amount: 123,
ratio: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| amount? | number | The absolute amount by which values can differ from expected values before being considered anomalous. |
| ratio? | number | The ratio by which values can differ from expected values before being considered anomalous. |
amount?
Type:
number
(optional)
The absolute amount by which values can differ from expected values before being considered anomalous.
ratio?
Type:
number
(optional)
The ratio by which values can differ from expected values before being considered anomalous.

.NET
Go
Java
Python
TypeScript