Class: Aws::IoTEvents::Types::AcknowledgeFlow
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::AcknowledgeFlow
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Specifies whether to get notified for alarm state changes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
The value must be ‘TRUE` or `FALSE`.
Instance Attribute Details
#enabled ⇒ Boolean
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.
24 25 26 27 28 |
# File 'lib/aws-sdk-iotevents/types.rb', line 24 class AcknowledgeFlow < Struct.new( :enabled) SENSITIVE = [] include Aws::Structure end |