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

io.burkard.cdk.services.ec2.Action.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.ec2

sealed abstract class Action(val underlying: software.amazon.awscdk.services.ec2.Action)
  extends Product
    with Serializable

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

  case object Allow
    extends Action(software.amazon.awscdk.services.ec2.Action.ALLOW)

  case object Deny
    extends Action(software.amazon.awscdk.services.ec2.Action.DENY)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy