Class: Aws::IoT::Types::ThingConnectivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ThingConnectivity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The connectivity status of the thing.
Instance Attribute Summary collapse
-
#connected ⇒ Boolean
True if the thing is connected to the AWS IoT service, false if it is not connected.
-
#timestamp ⇒ Integer
The epoch time (in milliseconds) when the thing last connected or disconnected.
Instance Attribute Details
#connected ⇒ Boolean
True if the thing is connected to the AWS IoT service, false if it is not connected.
9980 9981 9982 9983 9984 |
# File 'lib/aws-sdk-iot/types.rb', line 9980 class ThingConnectivity < Struct.new( :connected, :timestamp) include Aws::Structure end |
#timestamp ⇒ Integer
The epoch time (in milliseconds) when the thing last connected or disconnected. Note that if the thing has been disconnected for more than a few weeks, the time value can be missing.
9980 9981 9982 9983 9984 |
# File 'lib/aws-sdk-iot/types.rb', line 9980 class ThingConnectivity < Struct.new( :connected, :timestamp) include Aws::Structure end |