Interface CfnAlarmModel.AlarmCapabilitiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlarmModel.AlarmCapabilitiesProperty.Jsii$Proxy
- Enclosing class:
CfnAlarmModel
@Stability(Stable)
public static interface CfnAlarmModel.AlarmCapabilitiesProperty
extends software.amazon.jsii.JsiiSerializable
Contains the configuration information of alarm state changes.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iotevents.*; AlarmCapabilitiesProperty alarmCapabilitiesProperty = AlarmCapabilitiesProperty.builder() .acknowledgeFlow(AcknowledgeFlowProperty.builder() .enabled(false) .build()) .initializationConfiguration(InitializationConfigurationProperty.builder() .disabledOnInitialization(false) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAlarmModel.AlarmCapabilitiesProperty
static final class
An implementation forCfnAlarmModel.AlarmCapabilitiesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcknowledgeFlow
Specifies whether to get notified for alarm state changes.- See Also:
-
getInitializationConfiguration
Specifies the default alarm state.The configuration applies to all alarms that were created based on this alarm model.
- See Also:
-
builder
-