interface JoinOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.JoinOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_JoinOperationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.JoinOperationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.JoinOperationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » JoinOperationProperty |
A transform operation that combines data from two sources based on specified join conditions.
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 joinOperationProperty: quicksight.CfnDataSetPropsMixin.JoinOperationProperty = {
alias: 'alias',
leftOperand: {
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
transformOperationId: 'transformOperationId',
},
leftOperandProperties: {
outputColumnNameOverrides: [{
outputColumnName: 'outputColumnName',
sourceColumnName: 'sourceColumnName',
}],
},
onClause: 'onClause',
rightOperand: {
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
transformOperationId: 'transformOperationId',
},
rightOperandProperties: {
outputColumnNameOverrides: [{
outputColumnName: 'outputColumnName',
sourceColumnName: 'sourceColumnName',
}],
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| alias? | string | Alias for this operation. |
| left | IResolvable | Transform | The left operand for the join operation. |
| left | IResolvable | Join | Properties that control how the left operand's columns are handled in the join result. |
| on | string | The join condition that specifies how to match rows between the left and right operands. |
| right | IResolvable | Transform | The right operand for the join operation. |
| right | IResolvable | Join | Properties that control how the right operand's columns are handled in the join result. |
| type? | string | The type of join to perform, such as INNER , LEFT , RIGHT , or OUTER . |
alias?
Type:
string
(optional)
Alias for this operation.
leftOperand?
Type:
IResolvable | Transform
(optional)
The left operand for the join operation.
leftOperandProperties?
Type:
IResolvable | Join
(optional)
Properties that control how the left operand's columns are handled in the join result.
onClause?
Type:
string
(optional)
The join condition that specifies how to match rows between the left and right operands.
rightOperand?
Type:
IResolvable | Transform
(optional)
The right operand for the join operation.
rightOperandProperties?
Type:
IResolvable | Join
(optional)
Properties that control how the right operand's columns are handled in the join result.
type?
Type:
string
(optional)
The type of join to perform, such as INNER , LEFT , RIGHT , or OUTER .

.NET
Go
Java
Python
TypeScript