interface AnalysisSourceEntityProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.AnalysisSourceEntityProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.AnalysisSourceEntityProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.AnalysisSourceEntityProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnAnalysis » AnalysisSourceEntityProperty | 
The source entity of an analysis.
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 analysisSourceEntityProperty: quicksight.CfnAnalysis.AnalysisSourceEntityProperty = {
  sourceTemplate: {
    arn: 'arn',
    dataSetReferences: [{
      dataSetArn: 'dataSetArn',
      dataSetPlaceholder: 'dataSetPlaceholder',
    }],
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| source | IResolvable | Analysis | The source template for the source entity of the analysis. | 
sourceTemplate?
Type:
IResolvable | Analysis
(optional)
The source template for the source entity of the analysis.

 .NET
 Java
 Python
 TypeScript