interface OutputColumnNameOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.OutputColumnNameOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_OutputColumnNameOverrideProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.OutputColumnNameOverrideProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.OutputColumnNameOverrideProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » OutputColumnNameOverrideProperty |
Specifies a mapping to override the name of an output column from a transform operation.
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 outputColumnNameOverrideProperty: quicksight.CfnDataSet.OutputColumnNameOverrideProperty = {
outputColumnName: 'outputColumnName',
// the properties below are optional
sourceColumnName: 'sourceColumnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| output | string | The new name to assign to the column in the output. |
| source | string | The original name of the column from the source transform operation. |
outputColumnName
Type:
string
The new name to assign to the column in the output.
sourceColumnName?
Type:
string
(optional)
The original name of the column from the source transform operation.

.NET
Go
Java
Python
TypeScript