interface AssetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.AssetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#AssetReference |
Java | software.amazon.awscdk.services.iotsitewise.AssetReference |
Python | aws_cdk.aws_iotsitewise.AssetReference |
TypeScript | aws-cdk-lib » aws_iotsitewise » AssetReference |
A reference to a Asset 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 assetReference: iotsitewise.AssetReference = {
assetArn: 'assetArn',
assetId: 'assetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string | The ARN of the Asset resource. |
| asset | string | The AssetId of the Asset resource. |
assetArn
Type:
string
The ARN of the Asset resource.
assetId
Type:
string
The AssetId of the Asset resource.

.NET
Go
Java
Python
TypeScript