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

io.burkard.cdk.services.stepfunctions.ChoiceProps.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.stepfunctions

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

  def apply(
    comment: Option[String] = None,
    outputPath: Option[String] = None,
    inputPath: Option[String] = None
  ): software.amazon.awscdk.services.stepfunctions.ChoiceProps =
    (new software.amazon.awscdk.services.stepfunctions.ChoiceProps.Builder)
      .comment(comment.orNull)
      .outputPath(outputPath.orNull)
      .inputPath(inputPath.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy