Interface AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps.Jsii$Proxy
Enclosing class:
AlarmEvents.CloudWatchAlarmConfigurationChange

@Stability(Experimental) public static interface AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for Alarm aws.cloudwatch@CloudWatchAlarmConfigurationChange event.

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.cloudwatch.events.*;
 CloudWatchAlarmConfigurationChangeProps cloudWatchAlarmConfigurationChangeProps = CloudWatchAlarmConfigurationChangeProps.builder()
         .alarmName(List.of("alarmName"))
         .configuration(Configuration.builder()
                 .actionsEnabled(List.of("actionsEnabled"))
                 .actionsSuppressor(List.of("actionsSuppressor"))
                 .actionsSuppressorExtensionPeriod(List.of("actionsSuppressorExtensionPeriod"))
                 .actionsSuppressorWaitPeriod(List.of("actionsSuppressorWaitPeriod"))
                 .alarmActions(List.of("alarmActions"))
                 .alarmName(List.of("alarmName"))
                 .alarmRule(List.of("alarmRule"))
                 .comparisonOperator(List.of("comparisonOperator"))
                 .datapointsToAlarm(List.of("datapointsToAlarm"))
                 .description(List.of("description"))
                 .evaluateLowSampleCountPercentile(List.of("evaluateLowSampleCountPercentile"))
                 .evaluationPeriods(List.of("evaluationPeriods"))
                 .insufficientDataActions(List.of("insufficientDataActions"))
                 .metrics(List.of(ConfigurationItem.builder()
                         .id(List.of("id"))
                         .metricStat(MetricStat.builder()
                                 .metric(Metric.builder()
                                         .dimensions(List.of("dimensions"))
                                         .name(List.of("name"))
                                         .namespace(List.of("namespace"))
                                         .build())
                                 .period(List.of("period"))
                                 .stat(List.of("stat"))
                                 .build())
                         .returnData(List.of("returnData"))
                         .build()))
                 .okActions(List.of("okActions"))
                 .threshold(List.of("threshold"))
                 .timestamp(List.of("timestamp"))
                 .treatMissingData(List.of("treatMissingData"))
                 .build())
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .operation(List.of("operation"))
         .state(State.builder()
                 .actionsSuppressedBy(List.of("actionsSuppressedBy"))
                 .evaluationState(List.of("evaluationState"))
                 .reason(List.of("reason"))
                 .reasonData(List.of("reasonData"))
                 .timestamp(List.of("timestamp"))
                 .value(List.of("value"))
                 .build())
         .build();