interface OutputColumnNameOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_OutputColumnNameOverrideProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const outputColumnNameOverrideProperty: quicksight_mixins.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty = {
outputColumnName: 'outputColumnName',
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
(optional)
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