Interface CfnAnomalyDetectorMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.020Z") @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.cfnpropertymixins.services.aps.*;
 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: