interface MissingDataActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnAnomalyDetectorPropsMixin.MissingDataActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnAnomalyDetectorPropsMixin_MissingDataActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnAnomalyDetectorPropsMixin.MissingDataActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnAnomalyDetectorPropsMixin.MissingDataActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » CfnAnomalyDetectorPropsMixin » MissingDataActionProperty |
Specifies the action to take when data is missing during anomaly detection evaluation.
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 missingDataActionProperty: aps.CfnAnomalyDetectorPropsMixin.MissingDataActionProperty = {
markAsAnomaly: false,
skip: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| mark | boolean | IResolvable | Marks missing data points as anomalies. |
| skip? | boolean | IResolvable | Skips evaluation when data is missing. |
markAsAnomaly?
Type:
boolean | IResolvable
(optional)
Marks missing data points as anomalies.
skip?
Type:
boolean | IResolvable
(optional)
Skips evaluation when data is missing.

.NET
Go
Java
Python
TypeScript