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

io.burkard.cdk.services.cloudwatch.LegendPosition.scala Maven / Gradle / Ivy

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

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

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

  case object Bottom
    extends LegendPosition(software.amazon.awscdk.services.cloudwatch.LegendPosition.BOTTOM)

  case object Right
    extends LegendPosition(software.amazon.awscdk.services.cloudwatch.LegendPosition.RIGHT)

  case object Hidden
    extends LegendPosition(software.amazon.awscdk.services.cloudwatch.LegendPosition.HIDDEN)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy