Confluent Cloud
Fully managed Apache Kafka service hosted in Confluent Cloud.
Connection Profile
bootstrap_servers(string, required): Comma-separated list of Kafka serverskey(string, required): Kafka cluster key from Confluent Cloud UIsecret(string, required): Kafka cluster secret from Confluent Cloud UIschema_registry(object, optional): Confluent Schema Registryendpoint(string, required): Schema Registry endpointapi_key(string, optional): Schema Registry API key (different from Kafka cluster key)api_secret(string, optional): Schema Registry API secret
Connection Table
Same as Kafka connector - see Kafka documentation for table configuration.
JSON Schema Reference
Connection Profile Schema
{
"type": "object",
"properties": {
"bootstrap_servers": {"type": "string"},
"key": {"type": "string"},
"secret": {"type": "string"},
"schema_registry": {
"type": "object",
"properties": {
"endpoint": {"type": "string"},
"api_key": {"type": "string"},
"api_secret": {"type": "string"}
}
}
},
"required": ["bootstrap_servers", "key", "secret"]
}Connection Table Schema
Uses KafkaTable schema - same as Kafka connector.