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