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

src.index.outputs.EventDestinationTargetCloudwatchLog.scala Maven / Gradle / Ivy

There is a newer version: 0.0.24-core.0.3
Show newest version
package besom.api.ngrok.outputs


final case class EventDestinationTargetCloudwatchLog private(
  auths: scala.Option[scala.collection.immutable.List[besom.api.ngrok.outputs.EventDestinationTargetCloudwatchLogAuth]],
  logGroupArn: scala.Option[String]
)
object EventDestinationTargetCloudwatchLog :

  given decoder(using besom.types.Context): besom.types.Decoder[EventDestinationTargetCloudwatchLog] =
    besom.internal.Decoder.derived[EventDestinationTargetCloudwatchLog]



  given outputOps: {} with
    extension(output: besom.types.Output[EventDestinationTargetCloudwatchLog])
      def auths : besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.ngrok.outputs.EventDestinationTargetCloudwatchLogAuth]]] = output.map(_.auths)
      def logGroupArn : besom.types.Output[scala.Option[String]] = output.map(_.logGroupArn)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[EventDestinationTargetCloudwatchLog]])
      def auths : besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.ngrok.outputs.EventDestinationTargetCloudwatchLogAuth]]] = output.map(_.flatMap(_.auths))
      def logGroupArn : besom.types.Output[scala.Option[String]] = output.map(_.flatMap(_.logGroupArn))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy