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

com.pulumi.awsnative.kafkaconnect.kotlin.outputs.ConnectorKafkaClusterClientAuthentication.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.kafkaconnect.kotlin.outputs

import com.pulumi.awsnative.kafkaconnect.kotlin.enums.ConnectorKafkaClusterClientAuthenticationType
import kotlin.Suppress

/**
 * Details of the client authentication used by the Kafka cluster.
 * @property authenticationType The type of client authentication used to connect to the Apache Kafka cluster. Value NONE means that no client authentication is used.
 */
public data class ConnectorKafkaClusterClientAuthentication(
    public val authenticationType: ConnectorKafkaClusterClientAuthenticationType,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.kafkaconnect.outputs.ConnectorKafkaClusterClientAuthentication): ConnectorKafkaClusterClientAuthentication = ConnectorKafkaClusterClientAuthentication(
            authenticationType = javaType.authenticationType().let({ args0 ->
                com.pulumi.awsnative.kafkaconnect.kotlin.enums.ConnectorKafkaClusterClientAuthenticationType.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy