interface DataSetSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.DataSetSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_DataSetSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.DataSetSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.DataSetSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » DataSetSchemaProperty |
Dataset schema.
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 dataSetSchemaProperty: quicksight.CfnTemplatePropsMixin.DataSetSchemaProperty = {
columnSchemaList: [{
dataType: 'dataType',
geographicRole: 'geographicRole',
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | (IResolvable | Column)[] | A structure containing the list of column schemas. |
columnSchemaList?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
A structure containing the list of column schemas.

.NET
Go
Java
Python
TypeScript