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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnComputationModelProps
static final class
An implementation forCfnComputationModelProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComputationModelConfiguration
- See Also:
-
getComputationModelDataBinding
- See Also:
-
getComputationModelName
The name of the computation model.- See Also:
-
getComputationModelDescription
A description about the computation model.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnComputationModelProps.Builder
ofCfnComputationModelProps
-