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