Interface CfnComputationModelProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnComputationModelProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-20T12:34:44.653Z") @Stability(Stable) public interface CfnComputationModelProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnComputationModel.

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_;
 CfnComputationModelProps cfnComputationModelProps = CfnComputationModelProps.builder()
         .computationModelConfiguration(ComputationModelConfigurationProperty.builder()
                 .anomalyDetection(AnomalyDetectionComputationModelConfigurationProperty.builder()
                         .inputProperties("inputProperties")
                         .resultProperty("resultProperty")
                         .build())
                 .build())
         .computationModelDataBinding(Map.of(
                 "computationModelDataBindingKey", ComputationModelDataBindingValueProperty.builder()
                         .assetModelProperty(AssetModelPropertyBindingValueProperty.builder()
                                 .assetModelId("assetModelId")
                                 .propertyId("propertyId")
                                 .build())
                         .assetProperty(AssetPropertyBindingValueProperty.builder()
                                 .assetId("assetId")
                                 .propertyId("propertyId")
                                 .build())
                         .list(List.of(computationModelDataBindingValueProperty_))
                         .build()))
         .computationModelName("computationModelName")
         // the properties below are optional
         .computationModelDescription("computationModelDescription")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: