Class: Aws::IoTEventsData::Types::DetectorState
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEventsData::Types::DetectorState
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ioteventsdata/types.rb
Overview
Information about the current state of the detector instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#state_name ⇒ String
The name of the state.
-
#timers ⇒ Array<Types::Timer>
The current state of the detector’s timers.
-
#variables ⇒ Array<Types::Variable>
The current values of the detector’s variables.
Instance Attribute Details
#state_name ⇒ String
The name of the state.
719 720 721 722 723 724 725 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 719 class DetectorState < Struct.new( :state_name, :variables, :timers) SENSITIVE = [] include Aws::Structure end |
#timers ⇒ Array<Types::Timer>
The current state of the detector’s timers.
719 720 721 722 723 724 725 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 719 class DetectorState < Struct.new( :state_name, :variables, :timers) SENSITIVE = [] include Aws::Structure end |
#variables ⇒ Array<Types::Variable>
The current values of the detector’s variables.
719 720 721 722 723 724 725 |
# File 'lib/aws-sdk-ioteventsdata/types.rb', line 719 class DetectorState < Struct.new( :state_name, :variables, :timers) SENSITIVE = [] include Aws::Structure end |