interface RenameColumnsOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.RenameColumnsOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_RenameColumnsOperationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.RenameColumnsOperationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.RenameColumnsOperationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » 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-lib';
const renameColumnsOperationProperty: quicksight.CfnDataSet.RenameColumnsOperationProperty = {
alias: 'alias',
renameColumnOperations: [{
columnName: 'columnName',
newColumnName: 'newColumnName',
}],
source: {
transformOperationId: 'transformOperationId',
// the properties below are optional
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
},
};
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
Alias for this operation.
renameColumnOperations
Type:
IResolvable | (IResolvable | Rename)[]
The list of column rename operations to perform, specifying old and new column names.
source
Type:
IResolvable | Transform
The source transform operation that provides input data for column renaming.

.NET
Go
Java
Python
TypeScript