Interface CfnComputationModel.ComputationModelDataBindingValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComputationModel.ComputationModelDataBindingValueProperty.Jsii$Proxy
- Enclosing class:
CfnComputationModel
@Stability(Stable)
public static interface CfnComputationModel.ComputationModelDataBindingValueProperty
extends software.amazon.jsii.JsiiSerializable
Contains computation model data binding value information, which can be one of
assetModelProperty , list .
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.*;
ComputationModelDataBindingValueProperty computationModelDataBindingValueProperty_;
ComputationModelDataBindingValueProperty computationModelDataBindingValueProperty = ComputationModelDataBindingValueProperty.builder()
.assetModelProperty(AssetModelPropertyBindingValueProperty.builder()
.assetModelId("assetModelId")
.propertyId("propertyId")
.build())
.assetProperty(AssetPropertyBindingValueProperty.builder()
.assetId("assetId")
.propertyId("propertyId")
.build())
.list(List.of(computationModelDataBindingValueProperty_))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnComputationModel.ComputationModelDataBindingValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssetModelProperty
Specifies an asset model property data binding value.Returns union: either
IResolvableorCfnComputationModel.AssetModelPropertyBindingValueProperty- See Also:
-
getAssetProperty
The asset property value used for computation model data binding.Returns union: either
IResolvableorCfnComputationModel.AssetPropertyBindingValueProperty- See Also:
-
getList
Specifies a list of data binding value.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnComputationModel.ComputationModelDataBindingValueProperty>- See Also:
-
builder
@Stability(Stable) static CfnComputationModel.ComputationModelDataBindingValueProperty.Builder builder()
-