interface AnalysisSourceTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.AnalysisSourceTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_AnalysisSourceTemplateProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.AnalysisSourceTemplateProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.AnalysisSourceTemplateProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const analysisSourceTemplateProperty: quicksight_mixins.CfnAnalysisPropsMixin.AnalysisSourceTemplateProperty = {
arn: 'arn',
dataSetReferences: [{
dataSetArn: 'dataSetArn',
dataSetPlaceholder: 'dataSetPlaceholder',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | 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
(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