interface DashboardReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.DashboardReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#DashboardReference |
Java | software.amazon.awscdk.interfaces.quicksight.DashboardReference |
Python | aws_cdk.interfaces.aws_quicksight.DashboardReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » 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_quicksight as interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const dashboardReference: interfaces_aws_quicksight.DashboardReference = {
awsAccountId: 'awsAccountId',
dashboardArn: 'dashboardArn',
dashboardId: 'dashboardId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the Dashboard resource. |
| dashboard | string | The ARN of the Dashboard resource. |
| dashboard | string | The DashboardId of the Dashboard resource. |
awsAccountId
Type:
string
The AwsAccountId 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