interface KafkaNodeParameters {
eventName?: string;
headerParametersJson?: string;
headersUi?: {
headerValues: { key?: string; value?: string }[];
};
jsonParameters?: boolean;
key?: string;
message?: string;
options?: {
acks?: boolean;
compression?: boolean;
timeout?: number;
};
schemaRegistryUrl?: string;
sendInputData?: boolean;
topic?: string;
useKey?: boolean;
useSchemaRegistry?: boolean;
}Properties§
§§§§§§§§§§
readonly event Name?: string§
readonly header Parameters Json?: stringHeader parameters as JSON (flat object)
readonly headers Ui?: { ... }Default: {} Type options: {"multipleValues":true}
readonly json Parameters?: boolean§readonly key?: stringThe message key
readonly message?: stringThe message to be sent
readonly options?: { ... }Default: {}
readonly schema Registry Url?: stringURL of the schema registry
readonly send Input Data?: booleanWhether to send the data the node receives as JSON to Kafka Default: true
readonly topic?: stringName of the queue of topic to publish to
readonly use Key?: booleanWhether to use a message key
readonly use Schema Registry?: booleanWhether to use Confluent Schema Registry
Namespace and Name of Schema in Schema Registry (namespace.name)