Class KafkaOptions
- Namespace
- Pipelinez.Kafka.Configuration
- Assembly
- Pipelinez.Kafka.dll
Provides shared Kafka broker connection settings used by Kafka sources and destinations.
public class KafkaOptions
- Inheritance
-
KafkaOptions
- Derived
- Inherited Members
Properties
BootstrapPassword
Gets or sets the SASL password used when the selected security protocol requires authentication.
public string BootstrapPassword { get; set; }
Property Value
BootstrapServers
Gets or sets the bootstrap broker list used to connect to the Kafka cluster.
public string BootstrapServers { get; set; }
Property Value
BootstrapUser
Gets or sets the SASL username used when the selected security protocol requires authentication.
public string BootstrapUser { get; set; }
Property Value
SaslMechanism
Gets or sets the SASL mechanism used when SASL authentication is enabled.
public SaslMechanism SaslMechanism { get; set; }
Property Value
- SaslMechanism
SecurityProtocol
Gets or sets the transport security protocol used for the Kafka connection.
public SecurityProtocol SecurityProtocol { get; set; }
Property Value
- SecurityProtocol