src.index.outputs.EventDestinationTargetKineseAuthCred.scala Maven / Gradle / Ivy
package besom.api.ngrok.outputs
final case class EventDestinationTargetKineseAuthCred private(
awsAccessKeyId: String,
awsSecretAccessKey: String
)
object EventDestinationTargetKineseAuthCred :
given decoder(using besom.types.Context): besom.types.Decoder[EventDestinationTargetKineseAuthCred] =
besom.internal.Decoder.derived[EventDestinationTargetKineseAuthCred]
given outputOps: {} with
extension(output: besom.types.Output[EventDestinationTargetKineseAuthCred])
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[EventDestinationTargetKineseAuthCred]])
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