src.index.inputs.EventDestinationTargetCloudwatchLogArgs.scala Maven / Gradle / Ivy
package besom.api.ngrok.inputs
final case class EventDestinationTargetCloudwatchLogArgs private(
auths: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.ngrok.inputs.EventDestinationTargetCloudwatchLogAuthArgs]]],
logGroupArn: besom.types.Output[scala.Option[String]]
)
object EventDestinationTargetCloudwatchLogArgs:
def apply(
auths: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.ngrok.inputs.EventDestinationTargetCloudwatchLogAuthArgs]]] = scala.None,
logGroupArn: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): EventDestinationTargetCloudwatchLogArgs =
new EventDestinationTargetCloudwatchLogArgs(
auths = auths.asOptionOutput(isSecret = false),
logGroupArn = logGroupArn.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[EventDestinationTargetCloudwatchLogArgs] =
besom.internal.Encoder.derived[EventDestinationTargetCloudwatchLogArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EventDestinationTargetCloudwatchLogArgs] =
besom.internal.ArgsEncoder.derived[EventDestinationTargetCloudwatchLogArgs]
© 2015 - 2024 Weber Informatics LLC | Privacy Policy