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

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

package io.burkard.cdk.services.stepfunctions

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

  def apply(
    internalResourceId: String,
    comment: Option[String] = None,
    outputPath: Option[String] = None,
    inputPath: Option[String] = None
  )(implicit stackCtx: software.amazon.awscdk.Stack): software.amazon.awscdk.services.stepfunctions.Choice =
    software.amazon.awscdk.services.stepfunctions.Choice.Builder
      .create(stackCtx, internalResourceId)
      .comment(comment.orNull)
      .outputPath(outputPath.orNull)
      .inputPath(inputPath.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy