Class: Aws::IoT::Types::UserProperty
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::UserProperty
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
A key-value pair that you define in the header. Both the key and the value are either literal strings or valid [substitution templates].
[1]: docs.aws.amazon.com/iot/latest/developerguide/iot-substitution-templates.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A key to be specified in ‘UserProperty`.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value to be specified in ‘UserProperty`.
 
Instance Attribute Details
#key ⇒ String
A key to be specified in ‘UserProperty`.
      16945 16946 16947 16948 16949 16950  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 16945 class UserProperty < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
A value to be specified in ‘UserProperty`.
      16945 16946 16947 16948 16949 16950  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 16945 class UserProperty < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end  |