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