Interface CfnComputationModel.AssetPropertyBindingValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComputationModel.AssetPropertyBindingValueProperty.Jsii$Proxy
- Enclosing class:
CfnComputationModel
@Stability(Stable)
public static interface CfnComputationModel.AssetPropertyBindingValueProperty
extends software.amazon.jsii.JsiiSerializable
Represents a data binding value referencing a specific asset property.
It's used to bind computation model variables to actual asset property values for processing.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iotsitewise.*; AssetPropertyBindingValueProperty assetPropertyBindingValueProperty = AssetPropertyBindingValueProperty.builder() .assetId("assetId") .propertyId("propertyId") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnComputationModel.AssetPropertyBindingValueProperty
static final class
An implementation forCfnComputationModel.AssetPropertyBindingValueProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ID of the asset containing the property.The ID of the property within the asset.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssetId
The ID of the asset containing the property.This identifies the specific asset instance's property value used in the computation model.
- See Also:
-
getPropertyId
The ID of the property within the asset.This identifies the specific property's value used in the computation model.
- See Also:
-
builder
-