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