AssetModelReference
- class aws_cdk.aws_iotsitewise.AssetModelReference(*, asset_model_arn, asset_model_id)
Bases:
object
A reference to a AssetModel resource.
- Parameters:
asset_model_arn (
str
) – The ARN of the AssetModel resource.asset_model_id (
str
) – The AssetModelId of the AssetModel 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 asset_model_reference = iotsitewise.AssetModelReference( asset_model_arn="assetModelArn", asset_model_id="assetModelId" )
Attributes
- asset_model_arn
The ARN of the AssetModel resource.
- asset_model_id
The AssetModelId of the AssetModel resource.