Module Values_0.StartingEventBatchConditionSource

The batch condition that started the workflow run. Either the number of events in the batch size arrived, in which case the BatchSize member is non-zero, or the batch window expired, in which case the BatchWindow member is non-zero.

Sourcetype nonrec t = {
  1. batchSize : NullableInteger.t option;
    (*

    Number of events in the batch.

    *)
  2. batchWindow : NullableInteger.t option;
    (*

    Duration of the batch window in seconds.

    *)
}
Sourceval make : ?batchSize:??? -> ?batchWindow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t