Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JoinInstruction

import type { JoinInstruction } from "https://aws-api.deno.dev/v0.3/services/quicksight.ts?docs=full";

The instructions associated with a join.

interface JoinInstruction {
LeftJoinKeyProperties?: JoinKeyProperties | null;
LeftOperand: string;
OnClause: string;
RightJoinKeyProperties?: JoinKeyProperties | null;
RightOperand: string;
Type: JoinType;
}

§Properties

§
LeftJoinKeyProperties?: JoinKeyProperties | null
[src]

Join key properties of the left operand.

§
LeftOperand: string
[src]

The operand on the left side of a join.

§
OnClause: string
[src]

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

§
RightJoinKeyProperties?: JoinKeyProperties | null
[src]

Join key properties of the right operand.

§
RightOperand: string
[src]

The operand on the right side of a join.

§

The type of join that it is.