ClusterEncryptionInTransit

data class ClusterEncryptionInTransit(val clientBroker: ClusterEncryptionInTransitClientBroker? = null, val inCluster: Boolean? = null)

Constructors

Link copied to clipboard
constructor(clientBroker: ClusterEncryptionInTransitClientBroker? = null, inCluster: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Indicates the encryption setting for data in transit between clients and brokers. You must set it to one of the following values. TLS means that client-broker communication is enabled with TLS only. TLS_PLAINTEXT means that client-broker communication is enabled for both TLS-encrypted, as well as plaintext data. PLAINTEXT means that client-broker communication is enabled in plaintext only. The default value is TLS .

Link copied to clipboard
val inCluster: Boolean? = null

When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plaintext. The default value is true.