Class: Aws::IoTSiteWise::Types::AssetPropertyBindingValueFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetPropertyBindingValueFilter
- 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
-
#asset_id ⇒ String
The ID of the asset containing the property to filter by.
-
#property_id ⇒ String
The ID of the property within the asset to filter by.
Instance Attribute Details
#asset_id ⇒ String
The ID of the asset containing the property to filter by. This identifies the specific asset instance containing the property of interest.
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_id ⇒ String
The ID of the property within the asset to filter by. Only data bindings referencing this specific property of the specified asset are matched.
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 |