Class: Aws::IoT::Types::ThingConnectivity

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

The connectivity status of the thing.

Instance Attribute Summary collapse

Instance Attribute Details

#connectedBoolean

True if the thing is connected to the AWS IoT service, false if it is not connected.

Returns:

  • (Boolean)


9980
9981
9982
9983
9984
# File 'lib/aws-sdk-iot/types.rb', line 9980

class ThingConnectivity < Struct.new(
  :connected,
  :timestamp)
  include Aws::Structure
end

#timestampInteger

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.

Returns:

  • (Integer)


9980
9981
9982
9983
9984
# File 'lib/aws-sdk-iot/types.rb', line 9980

class ThingConnectivity < Struct.new(
  :connected,
  :timestamp)
  include Aws::Structure
end