interface ColumnSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.ColumnSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_ColumnSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.ColumnSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.ColumnSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const columnSchemaProperty: quicksight.CfnTemplatePropsMixin.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.

.NET
Go
Java
Python
TypeScript