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

src.index.outputs.EventDestinationTargetCloudwatchLogAuthCred.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 EventDestinationTargetCloudwatchLogAuthCred private(
  awsAccessKeyId: String,
  awsSecretAccessKey: String
)
object EventDestinationTargetCloudwatchLogAuthCred :

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



  given outputOps: {} with
    extension(output: besom.types.Output[EventDestinationTargetCloudwatchLogAuthCred])
      def awsAccessKeyId : besom.types.Output[String] = output.map(_.awsAccessKeyId)
      def awsSecretAccessKey : besom.types.Output[String] = output.map(_.awsSecretAccessKey)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[EventDestinationTargetCloudwatchLogAuthCred]])
      def awsAccessKeyId : besom.types.Output[scala.Option[String]] = output.map(_.map(_.awsAccessKeyId))
      def awsSecretAccessKey : besom.types.Output[scala.Option[String]] = output.map(_.map(_.awsSecretAccessKey))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy