src.index.inputs.EventDestinationTargetCloudwatchLogAuthCredArgs.scala Maven / Gradle / Ivy
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