interface TemplateSourceEntityProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.TemplateSourceEntityProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.TemplateSourceEntityProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.TemplateSourceEntityProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»TemplateSourceEntityProperty | 
The source entity of the template.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const templateSourceEntityProperty: quicksight.CfnTemplate.TemplateSourceEntityProperty = {
  sourceAnalysis: {
    arn: 'arn',
    dataSetReferences: [{
      dataSetArn: 'dataSetArn',
      dataSetPlaceholder: 'dataSetPlaceholder',
    }],
  },
  sourceTemplate: {
    arn: 'arn',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| source | IResolvable | Template | The source analysis, if it is based on an analysis. | 
| source | IResolvable | Template | The source template, if it is based on an template. | 
sourceAnalysis?
Type:
IResolvable | Template
(optional)
The source analysis, if it is based on an analysis.
sourceTemplate?
Type:
IResolvable | Template
(optional)
The source template, if it is based on an template.
