Class: Aws::IoT::Types::AssetPropertyVariant
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoT::Types::AssetPropertyVariant
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Contains an asset property value (of a single type).
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #boolean_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #double_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #integer_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #string_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Attribute Details
#boolean_value ⇒ String
Optional. A string that contains the boolean value (‘true` or `false`) of the value entry. Accepts substitution templates.
| 481 482 483 484 485 486 487 488 | # File 'lib/aws-sdk-iot/types.rb', line 481 class AssetPropertyVariant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end | 
#double_value ⇒ String
Optional. A string that contains the double value of the value entry. Accepts substitution templates.
| 481 482 483 484 485 486 487 488 | # File 'lib/aws-sdk-iot/types.rb', line 481 class AssetPropertyVariant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end | 
#integer_value ⇒ String
Optional. A string that contains the integer value of the value entry. Accepts substitution templates.
| 481 482 483 484 485 486 487 488 | # File 'lib/aws-sdk-iot/types.rb', line 481 class AssetPropertyVariant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end | 
#string_value ⇒ String
Optional. The string value of the value entry. Accepts substitution templates.
| 481 482 483 484 485 486 487 488 | # File 'lib/aws-sdk-iot/types.rb', line 481 class AssetPropertyVariant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end |