All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.index.inputs.EventDestinationTargetKineseArgs.scala Maven / Gradle / Ivy

There is a newer version: 0.0.24-core.0.3
Show newest version
package besom.api.ngrok.inputs

final case class EventDestinationTargetKineseArgs private(
  auths: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.ngrok.inputs.EventDestinationTargetKineseAuthArgs]]],
  streamArn: besom.types.Output[scala.Option[String]]
)

object EventDestinationTargetKineseArgs:
  def apply(
    auths: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.ngrok.inputs.EventDestinationTargetKineseAuthArgs]]] = scala.None,
    streamArn: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): EventDestinationTargetKineseArgs =
    new EventDestinationTargetKineseArgs(
      auths = auths.asOptionOutput(isSecret = false),
      streamArn = streamArn.asOptionOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[EventDestinationTargetKineseArgs] =
    besom.internal.Encoder.derived[EventDestinationTargetKineseArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EventDestinationTargetKineseArgs] =
    besom.internal.ArgsEncoder.derived[EventDestinationTargetKineseArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy