Class: Aws::IoTEvents::Types::Event
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::Event
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Specifies the actions
to be performed when the condition
evaluates
to TRUE.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Array<Types::Action>
The actions to be performed.
-
#condition ⇒ String
Optional.
-
#event_name ⇒ String
The name of the event.
Instance Attribute Details
#actions ⇒ Array<Types::Action>
The actions to be performed.
1762 1763 1764 1765 1766 1767 1768 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1762 class Event < Struct.new( :event_name, :condition, :actions) SENSITIVE = [] include Aws::Structure end |
#condition ⇒ String
Optional. The Boolean expression that, when TRUE, causes the
actions
to be performed. If not present, the actions are performed
(=TRUE). If the expression result is not a Boolean value, the
actions are not performed (=FALSE).
1762 1763 1764 1765 1766 1767 1768 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1762 class Event < Struct.new( :event_name, :condition, :actions) SENSITIVE = [] include Aws::Structure end |