Class: Aws::IoTEventsData::Types::DetectorStateDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::DetectorStateDefinition
- Defined in:
- gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb
Overview
The new state, variable values, and timer settings of the detector (instance).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#state_name ⇒ String
The name of the new state of the detector (instance).
-
#timers ⇒ Array<Types::TimerDefinition>
The new values of the detector's timers.
-
#variables ⇒ Array<Types::VariableDefinition>
The new values of the detector's variables.
Instance Attribute Details
#state_name ⇒ String
The name of the new state of the detector (instance).
744 745 746 747 748 749 750 |
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 744 class DetectorStateDefinition < Struct.new( :state_name, :variables, :timers) SENSITIVE = [] include Aws::Structure end |
#timers ⇒ Array<Types::TimerDefinition>
The new values of the detector's timers. Any timer whose value isn't specified is cleared, and its timeout event won't occur.
744 745 746 747 748 749 750 |
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 744 class DetectorStateDefinition < Struct.new( :state_name, :variables, :timers) SENSITIVE = [] include Aws::Structure end |
#variables ⇒ Array<Types::VariableDefinition>
The new values of the detector's variables. Any variable whose value isn't specified is cleared.
744 745 746 747 748 749 750 |
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 744 class DetectorStateDefinition < Struct.new( :state_name, :variables, :timers) SENSITIVE = [] include Aws::Structure end |