interface DashboardReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTSiteWise.DashboardReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotsitewise#DashboardReference |
Java | software.amazon.awscdk.interfaces.iotsitewise.DashboardReference |
Python | aws_cdk.interfaces.aws_iotsitewise.DashboardReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotsitewise » DashboardReference |
A reference to a Dashboard 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_iotsitewise } from 'aws-cdk-lib/interfaces';
const dashboardReference: interfaces_iotsitewise.DashboardReference = {
dashboardArn: 'dashboardArn',
dashboardId: 'dashboardId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dashboard | string | The ARN of the Dashboard resource. |
| dashboard | string | The DashboardId of the Dashboard resource. |
dashboardArn
Type:
string
The ARN of the Dashboard resource.
dashboardId
Type:
string
The DashboardId of the Dashboard resource.

.NET
Go
Java
Python
TypeScript