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

io.burkard.cdk.services.s3.InventoryFormat.scala Maven / Gradle / Ivy

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

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

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

  case object Csv
    extends InventoryFormat(software.amazon.awscdk.services.s3.InventoryFormat.CSV)

  case object Parquet
    extends InventoryFormat(software.amazon.awscdk.services.s3.InventoryFormat.PARQUET)

  case object Orc
    extends InventoryFormat(software.amazon.awscdk.services.s3.InventoryFormat.ORC)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy