interface CastColumnTypeOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.CastColumnTypeOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_CastColumnTypeOperationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.CastColumnTypeOperationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.CastColumnTypeOperationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » CastColumnTypeOperationProperty |
A transform operation that casts a column to a different type.
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 castColumnTypeOperationProperty: quicksight.CfnDataSetPropsMixin.CastColumnTypeOperationProperty = {
columnName: 'columnName',
format: 'format',
newColumnType: 'newColumnType',
subType: 'subType',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | Column name. |
| format? | string | When casting a column from string to datetime type, you can supply a string in a format supported by Quick Sight to denote the source data format. |
| new | string | New column data type. |
| sub | string | The sub data type of the new column. |
columnName?
Type:
string
(optional)
Column name.
format?
Type:
string
(optional)
When casting a column from string to datetime type, you can supply a string in a format supported by Quick Sight to denote the source data format.
newColumnType?
Type:
string
(optional)
New column data type.
subType?
Type:
string
(optional)
The sub data type of the new column.
Sub types are only available for decimal columns that are part of a SPICE dataset.

.NET
Go
Java
Python
TypeScript