interface JoinInstructionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.JoinInstructionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_JoinInstructionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.JoinInstructionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.JoinInstructionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » JoinInstructionProperty |
The instructions associated with a join.
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 joinInstructionProperty: quicksight_mixins.CfnDataSetPropsMixin.JoinInstructionProperty = {
leftJoinKeyProperties: {
uniqueKey: false,
},
leftOperand: 'leftOperand',
onClause: 'onClause',
rightJoinKeyProperties: {
uniqueKey: false,
},
rightOperand: 'rightOperand',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| left | IResolvable | Join | Join key properties of the left operand. |
| left | string | The operand on the left side of a join. |
| on | string | The join instructions provided in the ON clause of a join. |
| right | IResolvable | Join | Join key properties of the right operand. |
| right | string | The operand on the right side of a join. |
| type? | string | The type of join that it is. |
leftJoinKeyProperties?
Type:
IResolvable | Join
(optional)
Join key properties of the left operand.
leftOperand?
Type:
string
(optional)
The operand on the left side of a join.
onClause?
Type:
string
(optional)
The join instructions provided in the ON clause of a join.
rightJoinKeyProperties?
Type:
IResolvable | Join
(optional)
Join key properties of the right operand.
rightOperand?
Type:
string
(optional)
The operand on the right side of a join.
type?
Type:
string
(optional)
The type of join that it is.

.NET
Go
Java
Python
TypeScript