SSLClientCertType
The format of the SSL client certificate used to connect to the Apache Kafka broker.
Possible Values
JKSFILE, PFXFILE, PEMKEY_FILE, PEMKEY_BLOBデータ型
string
デフォルト値
"PEMKEY_FILE"
解説
This property is used to determine what format the SSLClientCert property expects. This property can take one of the following values:
PFXFILE | The certificate store is the name of a PFX (PKCS12) file containing certificates. In this mode, SSLClientCert controls the ssl.keystore.location client option. |
PEMKEY_FILE | The certificate store is the name of a PEM-encoded file that contains a private key and certificate. In this mode, SSLClientCert controls the ssl.key.pem and ssl.certificate.pem options. The Kafka client libraries do not natively support combining the private key and certificate into the same file. Internally, the 本製品 reads the file and separates the PRIVATE KEY blocks from the CERTIFICATE blocks. |
PEMKEY_BLOB | The certificate store is a string that contains a private key and certificate, optionally encoded in base64. In this mode, SSLClientCert controls the ssl.key.pem and ssl.certificate.pem options. See the PEMKEY_FILE section for more information on why two properties are required. |