ComputationModelReference

class aws_cdk.aws_iotsitewise.ComputationModelReference(*, computation_model_arn, computation_model_id)

Bases: object

A reference to a ComputationModel resource.

Parameters:
  • computation_model_arn (str) – The ARN of the ComputationModel resource.

  • computation_model_id (str) – The ComputationModelId of the ComputationModel resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iotsitewise as iotsitewise

computation_model_reference = iotsitewise.ComputationModelReference(
    computation_model_arn="computationModelArn",
    computation_model_id="computationModelId"
)

Attributes

computation_model_arn

The ARN of the ComputationModel resource.

computation_model_id

The ComputationModelId of the ComputationModel resource.