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

io.burkard.cdk.services.stepfunctions.tasks.AssembleWith.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.stepfunctions.tasks

sealed abstract class AssembleWith(val underlying: software.amazon.awscdk.services.stepfunctions.tasks.AssembleWith)
  extends Product
    with Serializable

object AssembleWith {
  implicit def toAws(value: AssembleWith): software.amazon.awscdk.services.stepfunctions.tasks.AssembleWith =
    Option(value).map(_.underlying).orNull

  case object None
    extends AssembleWith(software.amazon.awscdk.services.stepfunctions.tasks.AssembleWith.NONE)

  case object Line
    extends AssembleWith(software.amazon.awscdk.services.stepfunctions.tasks.AssembleWith.LINE)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy