Class: Aws::IoTEvents::Types::Event
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::Event
- Includes:
- Structure
- Defined in:
- 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.
1761 1762 1763 1764 1765 1766 1767 |
# File 'lib/aws-sdk-iotevents/types.rb', line 1761 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).
1761 1762 1763 1764 1765 1766 1767 |
# File 'lib/aws-sdk-iotevents/types.rb', line 1761 class Event < Struct.new( :event_name, :condition, :actions) SENSITIVE = [] include Aws::Structure end |