Interface CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty.Jsii$Proxy
- Enclosing class:
CfnComputationModelPropsMixin
@Stability(Stable)
public static interface CfnComputationModelPropsMixin.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.cfnpropertymixins.services.iotsitewise.*;
AssetPropertyBindingValueProperty assetPropertyBindingValueProperty = AssetPropertyBindingValueProperty.builder()
.assetId("assetId")
.propertyId("propertyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnComputationModelPropsMixin.AssetPropertyBindingValueProperty -
Method Summary
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
@Stability(Stable) static CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty.Builder builder()
-