interface DashboardSourceTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.DashboardSourceTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_DashboardSourceTemplateProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.DashboardSourceTemplateProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.DashboardSourceTemplateProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » DashboardSourceTemplateProperty |
Dashboard source template.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dashboardSourceTemplateProperty: quicksight_mixins.CfnDashboardPropsMixin.DashboardSourceTemplateProperty = {
arn: 'arn',
dataSetReferences: [{
dataSetArn: 'dataSetArn',
dataSetPlaceholder: 'dataSetPlaceholder',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the resource. |
| data | IResolvable | (IResolvable | Data)[] | Dataset references. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the resource.
dataSetReferences?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
Dataset references.

.NET
Go
Java
Python
TypeScript