Class: Aws::IoTEvents::Types::TransitionEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::TransitionEvent
- Defined in:
- gems/aws-sdk-iotevents/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.
2958 2959 2960 2961 2962 2963 2964 2965 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2958 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.
2958 2959 2960 2961 2962 2963 2964 2965 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2958 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |
#event_name ⇒ String
The name of the transition event.
2958 2959 2960 2961 2962 2963 2964 2965 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2958 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |
#next_state ⇒ String
The next state to enter.
2958 2959 2960 2961 2962 2963 2964 2965 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2958 class TransitionEvent < Struct.new( :event_name, :condition, :actions, :next_state) SENSITIVE = [] include Aws::Structure end |