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

.NET
Go
Java
Python
TypeScript