interface DashboardSourceTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.DashboardSourceTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_DashboardSourceTemplateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.DashboardSourceTemplateProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.DashboardSourceTemplateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const dashboardSourceTemplateProperty: quicksight.CfnDashboardPropsMixin.DashboardSourceTemplateProperty = {
arn: 'arn',
dataSetReferences: [{
dataSetArn: 'dataSetArn',
dataSetPlaceholder: 'dataSetPlaceholder',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | ITemplate | The Amazon Resource Name (ARN) of the resource. |
| data | IResolvable | (IResolvable | Data)[] | Dataset references. |
arn?
Type:
string | ITemplate
(optional)
The Amazon Resource Name (ARN) of the resource.
dataSetReferences?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
Dataset references.

.NET
Go
Java
Python
TypeScript