interface JoinInstructionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.JoinInstructionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_JoinInstructionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.JoinInstructionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.JoinInstructionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const joinInstructionProperty: quicksight.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