Values_0.BatchConfigSourceConfiguration settings for batching.
type nonrec t = {maxBatchOpenMs : MaxBatchOpenMs.t option;The maximum amount of time (in milliseconds) that an outgoing call waits for other calls with which it batches messages of the same type. The higher the setting, the longer the latency of the batched HTTP Action will be.
*)maxBatchSize : MaxBatchSize.t option;The maximum number of messages that are batched together in a single action execution.
*)maxBatchSizeBytes : MaxBatchSizeBytes.t option;Maximum size of a message batch, in bytes.
*)batchAcrossTopics : BatchAcrossTopics.t option;Whether to allow batching messages from different MQTT topics into a single HTTP request. By default, only messages from the same topic are batched together. The default value is false.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BatchAcrossTopics.t | `Integer of MaxBatchOpenMs.t ])
list ]