interface CastColumnTypesOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.CastColumnTypesOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_CastColumnTypesOperationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.CastColumnTypesOperationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.CastColumnTypesOperationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » CastColumnTypesOperationProperty |
A transform operation that changes the data types of one or more columns in the dataset.
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 castColumnTypesOperationProperty: quicksight.CfnDataSetPropsMixin.CastColumnTypesOperationProperty = {
alias: 'alias',
castColumnTypeOperations: [{
columnName: 'columnName',
format: 'format',
newColumnType: 'newColumnType',
subType: 'subType',
}],
source: {
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
transformOperationId: 'transformOperationId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias? | string | Alias for this operation. |
| cast | IResolvable | (IResolvable | Cast)[] | The list of column type casting operations to perform. |
| source? | IResolvable | Transform | The source transform operation that provides input data for the type casting. |
alias?
Type:
string
(optional)
Alias for this operation.
castColumnTypeOperations?
Type:
IResolvable | (IResolvable | Cast)[]
(optional)
The list of column type casting operations to perform.
source?
Type:
IResolvable | Transform
(optional)
The source transform operation that provides input data for the type casting.

.NET
Go
Java
Python
TypeScript