Interface CompositeAlarmProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:13.927Z") @Stability(Stable) public interface CompositeAlarmProps extends software.amazon.jsii.JsiiSerializable
Properties for creating a Composite Alarm.

Example:

 Alarm alarm1;
 Alarm alarm2;
 Alarm alarm3;
 Alarm alarm4;
 IAlarmRule alarmRule = AlarmRule.anyOf(AlarmRule.allOf(AlarmRule.anyOf(alarm1, AlarmRule.fromAlarm(alarm2, AlarmState.OK), alarm3), AlarmRule.not(AlarmRule.fromAlarm(alarm4, AlarmState.INSUFFICIENT_DATA))), AlarmRule.fromBoolean(false));
 CompositeAlarm.Builder.create(this, "MyAwesomeCompositeAlarm")
         .alarmRule(alarmRule)
         .build();
 
  • Method Details

    • getAlarmRule

      @Stability(Stable) @NotNull IAlarmRule getAlarmRule()
      Expression that specifies which other alarms are to be evaluated to determine this composite alarm's state.
    • getActionsEnabled

      @Stability(Stable) @Nullable default Boolean getActionsEnabled()
      Whether the actions for this alarm are enabled.

      Default: true

    • getActionsSuppressor

      @Stability(Stable) @Nullable default IAlarm getActionsSuppressor()
      Actions will be suppressed if the suppressor alarm is in the ALARM state.

      Default: - alarm will not be suppressed.

    • getActionsSuppressorExtensionPeriod

      @Stability(Stable) @Nullable default Duration getActionsSuppressorExtensionPeriod()
      The maximum duration that the composite alarm waits after suppressor alarm goes out of the ALARM state.

      After this time, the composite alarm performs its actions.

      Default: - 1 minute extension period will be set.

    • getActionsSuppressorWaitPeriod

      @Stability(Stable) @Nullable default Duration getActionsSuppressorWaitPeriod()
      The maximum duration that the composite alarm waits for the suppressor alarm to go into the ALARM state.

      After this time, the composite alarm performs its actions.

      Default: - 1 minute wait period will be set.

    • getAlarmDescription

      @Stability(Stable) @Nullable default String getAlarmDescription()
      Description for the alarm.

      Default: - No description.

    • getCompositeAlarmName

      @Stability(Stable) @Nullable default String getCompositeAlarmName()
      Name of the alarm.

      Default: - Automatically generated name.

    • builder

      @Stability(Stable) static CompositeAlarmProps.Builder builder()
      Returns:
      a CompositeAlarmProps.Builder of CompositeAlarmProps