Show / Hide Table of Contents

Interface CfnComputationModel.IAssetPropertyBindingValueProperty

Represents a data binding value referencing a specific asset property.

Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnComputationModel.IAssetPropertyBindingValueProperty
Syntax (vb)
Public Interface CfnComputationModel.IAssetPropertyBindingValueProperty
Remarks

It's used to bind computation model variables to actual asset property values for processing.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html

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

Properties

AssetId

The ID of the asset containing the property.

PropertyId

The ID of the property within the asset.

Properties

AssetId

The ID of the asset containing the property.

string AssetId { get; }
Property Value

string

Remarks

This identifies the specific asset instance's property value used in the computation model.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html#cfn-iotsitewise-computationmodel-assetpropertybindingvalue-assetid

PropertyId

The ID of the property within the asset.

string PropertyId { get; }
Property Value

string

Remarks

This identifies the specific property's value used in the computation model.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html#cfn-iotsitewise-computationmodel-assetpropertybindingvalue-propertyid

Back to top Generated by DocFX