interface AlarmCapabilitiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTEvents.CfnAlarmModelPropsMixin.AlarmCapabilitiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotevents#CfnAlarmModelPropsMixin_AlarmCapabilitiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotevents.CfnAlarmModelPropsMixin.AlarmCapabilitiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotevents.CfnAlarmModelPropsMixin.AlarmCapabilitiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotevents » CfnAlarmModelPropsMixin » 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 { aws_iotevents as iotevents } from '@aws-cdk/cfn-property-mixins';
const alarmCapabilitiesProperty: iotevents.CfnAlarmModelPropsMixin.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
Go
Java
Python
TypeScript