Interface AlarmWidgetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, MetricWidgetProps
All Known Implementing Classes:
AlarmWidgetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-10-01T17:46:49.776Z") @Stability(Stable) public interface AlarmWidgetProps extends software.amazon.jsii.JsiiSerializable, MetricWidgetProps
Properties for an AlarmWidget.

Example:

 Dashboard dashboard;
 Alarm errorAlarm;
 dashboard.addWidgets(AlarmWidget.Builder.create()
         .title("Errors")
         .alarm(errorAlarm)
         .build());