Class: Aws::IoT::Types::PutAssetPropertyValueEntry
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::PutAssetPropertyValueEntry
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
An asset property value entry containing the following information.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #asset_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the IoT SiteWise asset.
 - 
  
    
      #entry_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #property_alias  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the property alias associated with your asset property.
 - 
  
    
      #property_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the asset’s property.
 - 
  
    
      #property_values  ⇒ Array<Types::AssetPropertyValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of property values to insert that each contain timestamp, quality, and value (TQV) information.
 
Instance Attribute Details
#asset_id ⇒ String
The ID of the IoT SiteWise asset. You must specify either a ‘propertyAlias` or both an `aliasId` and a `propertyId`. Accepts substitution templates.
      12724 12725 12726 12727 12728 12729 12730 12731 12732  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12724 class PutAssetPropertyValueEntry < Struct.new( :entry_id, :asset_id, :property_id, :property_alias, :property_values) SENSITIVE = [] include Aws::Structure end  | 
  
#entry_id ⇒ String
Optional. A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.
      12724 12725 12726 12727 12728 12729 12730 12731 12732  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12724 class PutAssetPropertyValueEntry < Struct.new( :entry_id, :asset_id, :property_id, :property_alias, :property_values) SENSITIVE = [] include Aws::Structure end  | 
  
#property_alias ⇒ String
The name of the property alias associated with your asset property. You must specify either a ‘propertyAlias` or both an `aliasId` and a `propertyId`. Accepts substitution templates.
      12724 12725 12726 12727 12728 12729 12730 12731 12732  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12724 class PutAssetPropertyValueEntry < Struct.new( :entry_id, :asset_id, :property_id, :property_alias, :property_values) SENSITIVE = [] include Aws::Structure end  | 
  
#property_id ⇒ String
The ID of the asset’s property. You must specify either a ‘propertyAlias` or both an `aliasId` and a `propertyId`. Accepts substitution templates.
      12724 12725 12726 12727 12728 12729 12730 12731 12732  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12724 class PutAssetPropertyValueEntry < Struct.new( :entry_id, :asset_id, :property_id, :property_alias, :property_values) SENSITIVE = [] include Aws::Structure end  | 
  
#property_values ⇒ Array<Types::AssetPropertyValue>
A list of property values to insert that each contain timestamp, quality, and value (TQV) information.
      12724 12725 12726 12727 12728 12729 12730 12731 12732  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12724 class PutAssetPropertyValueEntry < Struct.new( :entry_id, :asset_id, :property_id, :property_alias, :property_values) SENSITIVE = [] include Aws::Structure end  |