interface AcknowledgeFlowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTEvents.CfnAlarmModel.AcknowledgeFlowProperty |
Java | software.amazon.awscdk.services.iotevents.CfnAlarmModel.AcknowledgeFlowProperty |
Python | aws_cdk.aws_iotevents.CfnAlarmModel.AcknowledgeFlowProperty |
TypeScript | @aws-cdk/aws-iotevents » CfnAlarmModel » AcknowledgeFlowProperty |
Specifies whether to get notified for 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 acknowledgeFlowProperty: iotevents.CfnAlarmModel.AcknowledgeFlowProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | The value must be TRUE or FALSE . |
enabled?
Type:
boolean | IResolvable
(optional)
The value must be TRUE or FALSE .
If TRUE , you receive a notification when the alarm state changes. You must choose to acknowledge the notification before the alarm state can return to NORMAL . If FALSE , you won't receive notifications. The alarm automatically changes to the NORMAL state when the input property value returns to the specified range.

.NET
Java
Python
TypeScript