Interface CfnAnomalyDetectorMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnomalyDetectorMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:22.829Z") @Stability(Stable) public interface CfnAnomalyDetectorMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnAnomalyDetectorPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.aps.mixins.*;
 CfnAnomalyDetectorMixinProps cfnAnomalyDetectorMixinProps = CfnAnomalyDetectorMixinProps.builder()
         .alias("alias")
         .configuration(AnomalyDetectorConfigurationProperty.builder()
                 .randomCutForest(RandomCutForestConfigurationProperty.builder()
                         .ignoreNearExpectedFromAbove(IgnoreNearExpectedProperty.builder()
                                 .amount(123)
                                 .ratio(123)
                                 .build())
                         .ignoreNearExpectedFromBelow(IgnoreNearExpectedProperty.builder()
                                 .amount(123)
                                 .ratio(123)
                                 .build())
                         .query("query")
                         .sampleSize(123)
                         .shingleSize(123)
                         .build())
                 .build())
         .evaluationIntervalInSeconds(123)
         .labels(List.of(LabelProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .missingDataAction(MissingDataActionProperty.builder()
                 .markAsAnomaly(false)
                 .skip(false)
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .workspace("workspace")
         .build();
 

See Also: