![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.msk.kotlin.inputs.ClusterTlsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.msk.kotlin.inputs
import com.pulumi.awsnative.msk.inputs.ClusterTlsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property certificateAuthorityArnList List of AWS Private CA Amazon Resource Name (ARN)s.
* @property enabled TLS authentication is enabled or not.
*/
public data class ClusterTlsArgs(
public val certificateAuthorityArnList: Output>? = null,
public val enabled: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.msk.inputs.ClusterTlsArgs =
com.pulumi.awsnative.msk.inputs.ClusterTlsArgs.builder()
.certificateAuthorityArnList(
certificateAuthorityArnList?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.enabled(enabled?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterTlsArgs].
*/
@PulumiTagMarker
public class ClusterTlsArgsBuilder internal constructor() {
private var certificateAuthorityArnList: Output>? = null
private var enabled: Output? = null
/**
* @param value List of AWS Private CA Amazon Resource Name (ARN)s.
*/
@JvmName("ovgakpfmsfgtsisy")
public suspend fun certificateAuthorityArnList(`value`: Output>) {
this.certificateAuthorityArnList = value
}
@JvmName("uupbtbainnurrtpe")
public suspend fun certificateAuthorityArnList(vararg values: Output) {
this.certificateAuthorityArnList = Output.all(values.asList())
}
/**
* @param values List of AWS Private CA Amazon Resource Name (ARN)s.
*/
@JvmName("oyflyypkjbddscex")
public suspend fun certificateAuthorityArnList(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy