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