interface RenameColumnOperationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.RenameColumnOperationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_RenameColumnOperationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDataSet.RenameColumnOperationProperty | 
  Python | aws_cdk.aws_quicksight.CfnDataSet.RenameColumnOperationProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDataSet » RenameColumnOperationProperty | 
A transform operation that renames a column.
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 renameColumnOperationProperty: quicksight.CfnDataSet.RenameColumnOperationProperty = {
  columnName: 'columnName',
  newColumnName: 'newColumnName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| column | string | The name of the column to be renamed. | 
| new | string | The new name for the column. | 
columnName?
Type:
string
(optional)
The name of the column to be renamed.
newColumnName?
Type:
string
(optional)
The new name for the column.

 .NET
 Go
 Java
 Python
 TypeScript