aws-cdk-lib.aws_quicksight.CfnDataSet.JoinInstructionProperty

interface JoinInstructionProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSet.JoinInstructionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_JoinInstructionProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSet.JoinInstructionProperty
Pythonaws_cdk.aws_quicksight.CfnDataSet.JoinInstructionProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDataSet » 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-lib';
const joinInstructionProperty: quicksight.CfnDataSet.JoinInstructionProperty = {
  leftOperand: 'leftOperand',
  onClause: 'onClause',
  rightOperand: 'rightOperand',
  type: 'type',

  // the properties below are optional
  leftJoinKeyProperties: {
    uniqueKey: false,
  },
  rightJoinKeyProperties: {
    uniqueKey: false,
  },
};

Properties

NameTypeDescription
leftOperandstringThe operand on the left side of a join.
onClausestringThe join instructions provided in the ON clause of a join.
rightOperandstringThe operand on the right side of a join.
typestringThe type of join that it is.
leftJoinKeyProperties?IResolvable | JoinKeyPropertiesPropertyJoin key properties of the left operand.
rightJoinKeyProperties?IResolvable | JoinKeyPropertiesPropertyJoin key properties of the right operand.

leftOperand

Type: string

The operand on the left side of a join.


onClause

Type: string

The join instructions provided in the ON clause of a join.


rightOperand

Type: string

The operand on the right side of a join.


type

Type: string

The type of join that it is.


leftJoinKeyProperties?

Type: IResolvable | JoinKeyPropertiesProperty (optional)

Join key properties of the left operand.


rightJoinKeyProperties?

Type: IResolvable | JoinKeyPropertiesProperty (optional)

Join key properties of the right operand.