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

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

package io.burkard.cdk.services.ec2

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

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

  case object Ebs
    extends AmazonLinuxStorage(software.amazon.awscdk.services.ec2.AmazonLinuxStorage.EBS)

  case object S3
    extends AmazonLinuxStorage(software.amazon.awscdk.services.ec2.AmazonLinuxStorage.S3)

  case object GeneralPurpose
    extends AmazonLinuxStorage(software.amazon.awscdk.services.ec2.AmazonLinuxStorage.GENERAL_PURPOSE)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy