Class: Aws::IoTSiteWise::Types::AssetPropertyBindingValue

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#asset_idString

The ID of the asset containing the property. This identifies the specific asset instance's property value used in the computation model.

Returns:

  • (String)


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_idString

The ID of the property within the asset. This identifies the specific property's value used in the computation model.

Returns:

  • (String)


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