All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.burkard.cdk.services.quicksight.cfnDataSet.JoinInstructionProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.quicksight.cfnDataSet

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object JoinInstructionProperty {

  def apply(
    rightOperand: String,
    leftOperand: String,
    onClause: String,
    `type`: String,
    leftJoinKeyProperties: Option[software.amazon.awscdk.services.quicksight.CfnDataSet.JoinKeyPropertiesProperty] = None,
    rightJoinKeyProperties: Option[software.amazon.awscdk.services.quicksight.CfnDataSet.JoinKeyPropertiesProperty] = None
  ): software.amazon.awscdk.services.quicksight.CfnDataSet.JoinInstructionProperty =
    (new software.amazon.awscdk.services.quicksight.CfnDataSet.JoinInstructionProperty.Builder)
      .rightOperand(rightOperand)
      .leftOperand(leftOperand)
      .onClause(onClause)
      .`type`(`type`)
      .leftJoinKeyProperties(leftJoinKeyProperties.orNull)
      .rightJoinKeyProperties(rightJoinKeyProperties.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy