interface AlarmCapabilitiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTEvents.CfnAlarmModel.AlarmCapabilitiesProperty |
Java | software.amazon.awscdk.services.iotevents.CfnAlarmModel.AlarmCapabilitiesProperty |
Python | aws_cdk.aws_iotevents.CfnAlarmModel.AlarmCapabilitiesProperty |
TypeScript | @aws-cdk/aws-iotevents » CfnAlarmModel » AlarmCapabilitiesProperty |
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 * as iotevents from '@aws-cdk/aws-iotevents';
const alarmCapabilitiesProperty: iotevents.CfnAlarmModel.AlarmCapabilitiesProperty = {
acknowledgeFlow: {
enabled: false,
},
initializationConfiguration: {
disabledOnInitialization: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| acknowledge | IResolvable | Acknowledge | Specifies whether to get notified for alarm state changes. |
| initialization | IResolvable | Initialization | Specifies the default alarm state. |
acknowledgeFlow?
Type:
IResolvable | Acknowledge
(optional)
Specifies whether to get notified for alarm state changes.
initializationConfiguration?
Type:
IResolvable | Initialization
(optional)
Specifies the default alarm state.
The configuration applies to all alarms that were created based on this alarm model.

.NET
Java
Python
TypeScript