Class: Aws::IoTSecureTunneling::Types::ConnectionState
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSecureTunneling::Types::ConnectionState
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsecuretunneling/types.rb
Overview
The state of a connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_updated_at ⇒ Time
The last time the connection status was updated.
-
#status ⇒ String
The connection status of the tunnel.
Instance Attribute Details
#last_updated_at ⇒ Time
The last time the connection status was updated.
42 43 44 45 46 47 |
# File 'lib/aws-sdk-iotsecuretunneling/types.rb', line 42 class ConnectionState < Struct.new( :status, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The connection status of the tunnel. Valid values are ‘CONNECTED` and `DISCONNECTED`.
42 43 44 45 46 47 |
# File 'lib/aws-sdk-iotsecuretunneling/types.rb', line 42 class ConnectionState < Struct.new( :status, :last_updated_at) SENSITIVE = [] include Aws::Structure end |