interface ColumnSchemaProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ColumnSchemaProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ColumnSchemaProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.ColumnSchemaProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»ColumnSchemaProperty | 
The column schema.
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 columnSchemaProperty: quicksight.CfnTemplate.ColumnSchemaProperty = {
  dataType: 'dataType',
  geographicRole: 'geographicRole',
  name: 'name',
};
Properties
| Name | Type | Description | 
|---|---|---|
| data | string | The data type of the column schema. | 
| geographic | string | The geographic role of the column schema. | 
| name? | string | The name of the column schema. | 
dataType?
Type:
string
(optional)
The data type of the column schema.
geographicRole?
Type:
string
(optional)
The geographic role of the column schema.
name?
Type:
string
(optional)
The name of the column schema.
