interface ComputationModelReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.ComputationModelReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#ComputationModelReference |
Java | software.amazon.awscdk.services.iotsitewise.ComputationModelReference |
Python | aws_cdk.aws_iotsitewise.ComputationModelReference |
TypeScript | aws-cdk-lib » aws_iotsitewise » ComputationModelReference |
A reference to a ComputationModel resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as iotsitewise } from 'aws-cdk-lib';
const computationModelReference: iotsitewise.ComputationModelReference = {
computationModelArn: 'computationModelArn',
computationModelId: 'computationModelId',
};
Properties
| Name | Type | Description |
|---|---|---|
| computation | string | The ARN of the ComputationModel resource. |
| computation | string | The ComputationModelId of the ComputationModel resource. |
computationModelArn
Type:
string
The ARN of the ComputationModel resource.
computationModelId
Type:
string
The ComputationModelId of the ComputationModel resource.

.NET
Go
Java
Python
TypeScript