Class: Aws::GreengrassV2::Types::AssociatedClientDevice
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::GreengrassV2::Types::AssociatedClientDevice
 
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about a client device that is associated to a core device for cloud discovery.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #association_timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time that the client device was associated, expressed in ISO 8601 format. 
- 
  
    
      #thing_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the IoT thing that represents the associated client device. 
Instance Attribute Details
#association_timestamp ⇒ Time
The time that the client device was associated, expressed in ISO 8601 format.
| 121 122 123 124 125 126 | # File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 121 class AssociatedClientDevice < Struct.new( :thing_name, :association_timestamp) SENSITIVE = [] include Aws::Structure end | 
#thing_name ⇒ String
The name of the IoT thing that represents the associated client device.
| 121 122 123 124 125 126 | # File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 121 class AssociatedClientDevice < Struct.new( :thing_name, :association_timestamp) SENSITIVE = [] include Aws::Structure end |