interface RenameColumnsOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.RenameColumnsOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_RenameColumnsOperationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.RenameColumnsOperationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.RenameColumnsOperationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » RenameColumnsOperationProperty |
A transform operation that renames 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 renameColumnsOperationProperty: quicksight.CfnDataSetPropsMixin.RenameColumnsOperationProperty = {
alias: 'alias',
renameColumnOperations: [{
columnName: 'columnName',
newColumnName: 'newColumnName',
}],
source: {
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
transformOperationId: 'transformOperationId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias? | string | Alias for this operation. |
| rename | IResolvable | (IResolvable | Rename)[] | The list of column rename operations to perform, specifying old and new column names. |
| source? | IResolvable | Transform | The source transform operation that provides input data for column renaming. |
alias?
Type:
string
(optional)
Alias for this operation.
renameColumnOperations?
Type:
IResolvable | (IResolvable | Rename)[]
(optional)
The list of column rename operations to perform, specifying old and new column names.
source?
Type:
IResolvable | Transform
(optional)
The source transform operation that provides input data for column renaming.

.NET
Go
Java
Python
TypeScript