interface OutputColumnNameOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_OutputColumnNameOverrideProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.OutputColumnNameOverrideProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const outputColumnNameOverrideProperty: quicksight.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