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

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy