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