interface DashboardReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudWatch.DashboardReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudwatch#DashboardReference |
Java | software.amazon.awscdk.interfaces.cloudwatch.DashboardReference |
Python | aws_cdk.interfaces.aws_cloudwatch.DashboardReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudwatch » 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_cloudwatch as interfaces_aws_cloudwatch } from 'aws-cdk-lib/interfaces';
const dashboardReference: interfaces_aws_cloudwatch.DashboardReference = {
dashboardName: 'dashboardName',
};
Properties
| Name | Type | Description |
|---|---|---|
| dashboard | string | The DashboardName of the Dashboard resource. |
dashboardName
Type:
string
The DashboardName of the Dashboard resource.

.NET
Go
Java
Python
TypeScript