Class: Aws::IoTSiteWise::Types::AssetPropertyBindingValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetPropertyBindingValue
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Represents a data binding value referencing a specific asset property. It's used to bind computation model variables to actual asset property values for processing.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_id ⇒ String
The ID of the asset containing the property.
-
#property_id ⇒ String
The ID of the property within the asset.
Instance Attribute Details
#asset_id ⇒ String
The ID of the asset containing the property. This identifies the specific asset instance's property value used in the computation model.
1185 1186 1187 1188 1189 1190 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 1185 class AssetPropertyBindingValue < Struct.new( :asset_id, :property_id) SENSITIVE = [] include Aws::Structure end |
#property_id ⇒ String
The ID of the property within the asset. This identifies the specific property's value used in the computation model.
1185 1186 1187 1188 1189 1190 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 1185 class AssetPropertyBindingValue < Struct.new( :asset_id, :property_id) SENSITIVE = [] include Aws::Structure end |