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
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: