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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:29.545Z") @Stability(Stable) public interface CfnAlertMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnAlertPropsMixin.

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.lookoutmetrics.*;
 CfnAlertMixinProps cfnAlertMixinProps = CfnAlertMixinProps.builder()
         .action(ActionProperty.builder()
                 .lambdaConfiguration(LambdaConfigurationProperty.builder()
                         .lambdaArn("lambdaArn")
                         .roleArn("roleArn")
                         .build())
                 .snsConfiguration(SNSConfigurationProperty.builder()
                         .roleArn("roleArn")
                         .snsTopicArn("snsTopicArn")
                         .build())
                 .build())
         .alertDescription("alertDescription")
         .alertName("alertName")
         .alertSensitivityThreshold(123)
         .anomalyDetectorArn("anomalyDetectorArn")
         .build();
 

See Also: