Class: Aws::IoTSiteWise::Types::AssetModelPropertyBindingValueFilter

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 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

Instance Attribute Details

#asset_model_idString

The ID of the asset model containing the filter property. This identifies the specific asset model that contains the property of interest.

Returns:

  • (String)


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_idString

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.

Returns:

  • (String)


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