Class: Aws::IoTSiteWise::Types::AssetModelPropertyBindingValueFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetModelPropertyBindingValueFilter
- 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 model property. This filter identifies all computation models that reference a particular property of an asset model in their data bindings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_model_id ⇒ String
The ID of the asset model containing the filter property.
-
#property_id ⇒ String
The ID of the property within the asset model to filter by.
Instance Attribute Details
#asset_model_id ⇒ String
The ID of the asset model containing the filter property. This identifies the specific asset model that contains the property of interest.
852 853 854 855 856 857 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 852 class AssetModelPropertyBindingValueFilter < Struct.new( :asset_model_id, :property_id) SENSITIVE = [] include Aws::Structure end |
#property_id ⇒ String
The ID of the property within the asset model to filter by. Only data bindings referencing this specific property of the specified asset model are matched.
852 853 854 855 856 857 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 852 class AssetModelPropertyBindingValueFilter < Struct.new( :asset_model_id, :property_id) SENSITIVE = [] include Aws::Structure end |