![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.msk.kotlin.inputs.ClusterVpcConnectivityTlsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.msk.kotlin.inputs
import com.pulumi.awsnative.msk.inputs.ClusterVpcConnectivityTlsArgs.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.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property enabled TLS authentication is enabled or not.
*/
public data class ClusterVpcConnectivityTlsArgs(
public val enabled: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.msk.inputs.ClusterVpcConnectivityTlsArgs =
com.pulumi.awsnative.msk.inputs.ClusterVpcConnectivityTlsArgs.builder()
.enabled(enabled.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterVpcConnectivityTlsArgs].
*/
@PulumiTagMarker
public class ClusterVpcConnectivityTlsArgsBuilder internal constructor() {
private var enabled: Output? = null
/**
* @param value TLS authentication is enabled or not.
*/
@JvmName("qtwkjkmlnisyvpvu")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value TLS authentication is enabled or not.
*/
@JvmName("pchekkiwxcbuelfr")
public suspend fun enabled(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.enabled = mapped
}
internal fun build(): ClusterVpcConnectivityTlsArgs = ClusterVpcConnectivityTlsArgs(
enabled = enabled ?: throw PulumiNullFieldException("enabled"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy