![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.events.kotlin.inputs.ConnectionClientParametersArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.events.kotlin.inputs
import com.pulumi.awsnative.events.inputs.ConnectionClientParametersArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property clientId The client ID to use for OAuth authorization.
* @property clientSecret The client secret assciated with the client ID to use for OAuth authorization.
*/
public data class ConnectionClientParametersArgs(
public val clientId: Output,
public val clientSecret: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.events.inputs.ConnectionClientParametersArgs =
com.pulumi.awsnative.events.inputs.ConnectionClientParametersArgs.builder()
.clientId(clientId.applyValue({ args0 -> args0 }))
.clientSecret(clientSecret.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ConnectionClientParametersArgs].
*/
@PulumiTagMarker
public class ConnectionClientParametersArgsBuilder internal constructor() {
private var clientId: Output? = null
private var clientSecret: Output? = null
/**
* @param value The client ID to use for OAuth authorization.
*/
@JvmName("lrnkycyroeikqdlv")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The client secret assciated with the client ID to use for OAuth authorization.
*/
@JvmName("tvrdukocitlcxaxl")
public suspend fun clientSecret(`value`: Output) {
this.clientSecret = value
}
/**
* @param value The client ID to use for OAuth authorization.
*/
@JvmName("cpqyahixtoxiiubr")
public suspend fun clientId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.clientId = mapped
}
/**
* @param value The client secret assciated with the client ID to use for OAuth authorization.
*/
@JvmName("vqndlhttpynlayam")
public suspend fun clientSecret(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.clientSecret = mapped
}
internal fun build(): ConnectionClientParametersArgs = ConnectionClientParametersArgs(
clientId = clientId ?: throw PulumiNullFieldException("clientId"),
clientSecret = clientSecret ?: throw PulumiNullFieldException("clientSecret"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy