interface JoinOperandPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.JoinOperandPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_JoinOperandPropertiesProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.JoinOperandPropertiesProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.JoinOperandPropertiesProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » 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-lib';
const joinOperandPropertiesProperty: quicksight.CfnDataSet.JoinOperandPropertiesProperty = {
outputColumnNameOverrides: [{
outputColumnName: 'outputColumnName',
// the properties below are optional
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)[]
A list of column name overrides to apply to the join operand's output columns.

.NET
Go
Java
Python
TypeScript