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

.NET
Go
Java
Python
TypeScript