Class: Aws::IoT::Types::ThingTypeMetadata
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::ThingTypeMetadata
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when time was deprecated.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #creation_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time when the thing type was created.
 - 
  
    
      #deprecated  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the thing type is deprecated.
 - 
  
    
      #deprecation_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time when the thing type was deprecated.
 
Instance Attribute Details
#creation_date ⇒ Time
The date and time when the thing type was created.
      15017 15018 15019 15020 15021 15022 15023  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15017 class ThingTypeMetadata < Struct.new( :deprecated, :deprecation_date, :creation_date) SENSITIVE = [] include Aws::Structure end  | 
  
#deprecated ⇒ Boolean
Whether the thing type is deprecated. If true, no new things could be associated with this type.
      15017 15018 15019 15020 15021 15022 15023  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15017 class ThingTypeMetadata < Struct.new( :deprecated, :deprecation_date, :creation_date) SENSITIVE = [] include Aws::Structure end  | 
  
#deprecation_date ⇒ Time
The date and time when the thing type was deprecated.
      15017 15018 15019 15020 15021 15022 15023  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15017 class ThingTypeMetadata < Struct.new( :deprecated, :deprecation_date, :creation_date) SENSITIVE = [] include Aws::Structure end  |