Interface CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps

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

@Stability(Experimental) public static interface CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for 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();
 
  • Method Details

    • getAlarmName

      @Stability(Experimental) @Nullable default List<String> getAlarmName()
      (experimental) alarmName property.

      Specify an array of string values to match this event if the actual value of alarmName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getConfiguration

      @Stability(Experimental) @Nullable default CloudWatchAlarmConfigurationChange.Configuration getConfiguration()
      (experimental) configuration property.

      Specify an array of string values to match this event if the actual value of configuration is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getOperation

      @Stability(Experimental) @Nullable default List<String> getOperation()
      (experimental) operation property.

      Specify an array of string values to match this event if the actual value of operation is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getState

      @Stability(Experimental) @Nullable default CloudWatchAlarmConfigurationChange.State getState()
      (experimental) state property.

      Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      Returns:
      a CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps.Builder of CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps