Interface CfnCloudWatchAlarmTemplateMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:32:14.984Z") @Stability(Stable) public interface CfnCloudWatchAlarmTemplateMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnCloudWatchAlarmTemplatePropsMixin.

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.medialive.*;
 CfnCloudWatchAlarmTemplateMixinProps cfnCloudWatchAlarmTemplateMixinProps = CfnCloudWatchAlarmTemplateMixinProps.builder()
         .comparisonOperator("comparisonOperator")
         .datapointsToAlarm(123)
         .description("description")
         .evaluationPeriods(123)
         .groupIdentifier("groupIdentifier")
         .metricName("metricName")
         .name("name")
         .period(123)
         .statistic("statistic")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .targetResourceType("targetResourceType")
         .threshold(123)
         .treatMissingData("treatMissingData")
         .build();
 

See Also: