Class: Aws::IoTEvents::Types::TransitionEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::TransitionEvent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Specifies the actions performed and the next state entered when a ‘condition` evaluates to TRUE.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Array<Types::Action>
The actions to be performed.
-
#condition ⇒ String
Required.
-
#event_name ⇒ String
The name of the transition event.
-
#next_state ⇒ String
The next state to enter.
Instance Attribute Details
#actions ⇒ Array<Types::Action>
The actions to be performed.
2957 2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2957 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |
#condition ⇒ String
Required. A Boolean expression that when TRUE causes the actions to be performed and the ‘nextState` to be entered.
2957 2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2957 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |
#event_name ⇒ String
The name of the transition event.
2957 2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2957 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |
#next_state ⇒ String
The next state to enter.
2957 2958 2959 2960 2961 2962 2963 2964 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2957 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |