SSLServerCertType
The format of the SSL server certificate used to verify the Apache Kafka broker.
Possible Values
USER, JKSFILE, PEMKEY_FILE, PEMKEY_BLOBData Type
string
Default Value
"PEMKEY_FILE"
Remarks
This property is used to determine what format the SSLServerCert property expects. This property can take one of the following values:
JKSFILE | The certificate store is the name of a Java key store (JKS) file the server certificate. In this mode SSLServerCert controls the ssl.truststore.location option, and ssl.truststore.type is set to JKS. |
PEMKEY_FILE | The certificate store is the name of a PEM-encoded file that contains a the server certificate. In this mode SSLServerCert controls the ssl.truststore.location option, and ssl.truststore.type is set to PEM. |
PEMKEY_BLOB | The certificate store is a string that contains the server certificate. In this mode SSLServerCert controls the ssl.truststore.certificates option. |