interface JoinOperandPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.JoinOperandPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_JoinOperandPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.JoinOperandPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.JoinOperandPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » JoinOperandPropertiesProperty |
Properties that control how columns are handled for a join operand, including column name overrides.
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 joinOperandPropertiesProperty: quicksight.CfnDataSetPropsMixin.JoinOperandPropertiesProperty = {
outputColumnNameOverrides: [{
outputColumnName: 'outputColumnName',
sourceColumnName: 'sourceColumnName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| output | IResolvable | (IResolvable | Output)[] | A list of column name overrides to apply to the join operand's output columns. |
outputColumnNameOverrides?
Type:
IResolvable | (IResolvable | Output)[]
(optional)
A list of column name overrides to apply to the join operand's output columns.

.NET
Go
Java
Python
TypeScript