interface ComputationModelReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTSiteWise.ComputationModelReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotsitewise#ComputationModelReference |
Java | software.amazon.awscdk.interfaces.iotsitewise.ComputationModelReference |
Python | aws_cdk.interfaces.aws_iotsitewise.ComputationModelReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_iotsitewise } from 'aws-cdk-lib/interfaces';
const computationModelReference: interfaces_aws_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