src.index.outputs.EventDestinationTargetFirehoseAuthRole.scala Maven / Gradle / Ivy
package besom.api.ngrok.outputs
final case class EventDestinationTargetFirehoseAuthRole private(
roleArn: String
)
object EventDestinationTargetFirehoseAuthRole :
given decoder(using besom.types.Context): besom.types.Decoder[EventDestinationTargetFirehoseAuthRole] =
besom.internal.Decoder.derived[EventDestinationTargetFirehoseAuthRole]
given outputOps: {} with
extension(output: besom.types.Output[EventDestinationTargetFirehoseAuthRole])
def roleArn : besom.types.Output[String] = output.map(_.roleArn)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[EventDestinationTargetFirehoseAuthRole]])
def roleArn : besom.types.Output[scala.Option[String]] = output.map(_.map(_.roleArn))
© 2015 - 2024 Weber Informatics LLC | Privacy Policy