Class CfnComputationModel.AssetPropertyBindingValueProperty
Represents a data binding value referencing a specific asset property.
Inherited Members
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComputationModel.AssetPropertyBindingValueProperty : CfnComputationModel.IAssetPropertyBindingValueProperty
Syntax (vb)
Public Class CfnComputationModel.AssetPropertyBindingValueProperty Implements CfnComputationModel.IAssetPropertyBindingValueProperty
Remarks
It's used to bind computation model variables to actual asset property values for processing.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var assetPropertyBindingValueProperty = new AssetPropertyBindingValueProperty {
AssetId = "assetId",
PropertyId = "propertyId"
};
Synopsis
Constructors
AssetPropertyBindingValueProperty() | Represents a data binding value referencing a specific asset property. |
Properties
AssetId | The ID of the asset containing the property. |
PropertyId | The ID of the property within the asset. |
Constructors
AssetPropertyBindingValueProperty()
Represents a data binding value referencing a specific asset property.
public AssetPropertyBindingValueProperty()
Remarks
It's used to bind computation model variables to actual asset property values for processing.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var assetPropertyBindingValueProperty = new AssetPropertyBindingValueProperty {
AssetId = "assetId",
PropertyId = "propertyId"
};
Properties
AssetId
The ID of the asset containing the property.
public string AssetId { get; set; }
Property Value
Remarks
This identifies the specific asset instance's property value used in the computation model.
PropertyId
The ID of the property within the asset.
public string PropertyId { get; set; }
Property Value
Remarks
This identifies the specific property's value used in the computation model.