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

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

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

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

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

  case object PlainText
    extends FlowLogFileFormat(software.amazon.awscdk.services.ec2.FlowLogFileFormat.PLAIN_TEXT)

  case object Parquet
    extends FlowLogFileFormat(software.amazon.awscdk.services.ec2.FlowLogFileFormat.PARQUET)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy