Interface AlarmWidgetProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.773Z") @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());