DataSetJoinInstructionArgs

data class DataSetJoinInstructionArgs(val leftJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, val leftOperand: Output<String>, val onClause: Output<String>, val rightJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, val rightOperand: Output<String>, val type: Output<DataSetJoinType>) : ConvertibleToJava<DataSetJoinInstructionArgs>

The instructions associated with a join.

Constructors

Link copied to clipboard
constructor(leftJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, leftOperand: Output<String>, onClause: Output<String>, rightJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, rightOperand: Output<String>, type: Output<DataSetJoinType>)

Properties

Link copied to clipboard

Join key properties of the left operand.

Link copied to clipboard
val leftOperand: Output<String>

The operand on the left side of a join.

Link copied to clipboard
val onClause: Output<String>

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

Link copied to clipboard

Join key properties of the right operand.

Link copied to clipboard
val rightOperand: Output<String>

The operand on the right side of a join.

Link copied to clipboard
val type: Output<DataSetJoinType>

The type of join that it is.

Functions

Link copied to clipboard
open override fun toJava(): DataSetJoinInstructionArgs