ClusterClientAuthentication

data class ClusterClientAuthentication(val sasl: ClusterSasl? = null, val tls: ClusterTls? = null, val unauthenticated: ClusterUnauthenticated? = null)

Constructors

Link copied to clipboard
constructor(sasl: ClusterSasl? = null, tls: ClusterTls? = null, unauthenticated: ClusterUnauthenticated? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val sasl: ClusterSasl? = null

Details for client authentication using SASL. To turn on SASL, you must also turn on EncryptionInTransit by setting inCluster to true. You must set clientBroker to either TLS or TLS_PLAINTEXT . If you choose TLS_PLAINTEXT , then you must also set unauthenticated to true.

Link copied to clipboard
val tls: ClusterTls? = null

Details for ClientAuthentication using TLS. To turn on TLS access control, you must also turn on EncryptionInTransit by setting inCluster to true and clientBroker to TLS .

Link copied to clipboard

Details for ClientAuthentication using no authentication.