Module Values_0.EventBatchingConditionSource

Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

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

    Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

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

    Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

    *)
}
Sourceval context_ : string
Sourceval make : ?batchWindow:??? -> batchSize:BatchSize.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BatchSize.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