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

src.index.inputs.EventDestinationTargetKineseAuthCredArgs.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 EventDestinationTargetKineseAuthCredArgs private(
  awsAccessKeyId: besom.types.Output[String],
  awsSecretAccessKey: besom.types.Output[String]
)

object EventDestinationTargetKineseAuthCredArgs:
  def apply(
    awsAccessKeyId: besom.types.Input[String],
    awsSecretAccessKey: besom.types.Input[String]
  )(using besom.types.Context): EventDestinationTargetKineseAuthCredArgs =
    new EventDestinationTargetKineseAuthCredArgs(
      awsAccessKeyId = awsAccessKeyId.asOutput(isSecret = false),
      awsSecretAccessKey = awsSecretAccessKey.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy