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

io.burkard.cdk.services.apigateway.MethodLoggingLevel.scala Maven / Gradle / Ivy

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

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

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

  case object Off
    extends MethodLoggingLevel(software.amazon.awscdk.services.apigateway.MethodLoggingLevel.OFF)

  case object Error
    extends MethodLoggingLevel(software.amazon.awscdk.services.apigateway.MethodLoggingLevel.ERROR)

  case object Info
    extends MethodLoggingLevel(software.amazon.awscdk.services.apigateway.MethodLoggingLevel.INFO)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy