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?: string
Header parameters as JSON (flat object)
readonly headers Ui?: { ... }
Default: {} Type options: {"multipleValues":true}
readonly json Parameters?: boolean
§readonly key?: string
The message key
readonly message?: string
The message to be sent
readonly options?: { ... }
Default: {}
readonly schema Registry Url?: string
URL of the schema registry. Only used when no Schema Registry credential is selected.
readonly send Input Data?: boolean
Whether to send the data the node receives as JSON to Kafka Default: true
readonly topic?: string
Name of the queue of topic to publish to
readonly use Key?: boolean
Whether to use a message key
readonly use Schema Registry?: boolean
Whether to use Confluent Schema Registry
Namespace and Name of Schema in Schema Registry (namespace.name)