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

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy