Class: Aws::IoTSiteWise::Types::AssetPropertyBindingValueFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb

Overview

A filter used to match data bindings based on a specific asset property. This filter helps identify all computation models referencing a particular property of an asset in their data bindings.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#asset_idString

The ID of the asset containing the property to filter by. This identifies the specific asset instance containing the property of interest.

Returns:

  • (String)


1218
1219
1220
1221
1222
1223
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 1218

class AssetPropertyBindingValueFilter < Struct.new(
  :asset_id,
  :property_id)
  SENSITIVE = []
  include Aws::Structure
end

#property_idString

The ID of the property within the asset to filter by. Only data bindings referencing this specific property of the specified asset are matched.

Returns:

  • (String)


1218
1219
1220
1221
1222
1223
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 1218

class AssetPropertyBindingValueFilter < Struct.new(
  :asset_id,
  :property_id)
  SENSITIVE = []
  include Aws::Structure
end