Module Values.BatchSource

Batch defines the boundaries for ingestion for each step in APPFLOW_INTEGRATION workflow. APPFLOW_INTEGRATION workflow splits ingestion based on these boundaries.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t;
    (*

    Start time of batch to split ingestion.

    *)
  2. endTime : Timestamp.t;
    (*

    End time of batch to split ingestion.

    *)
}
Sourceval context_ : string
Sourceval make : startTime:Timestamp.t -> endTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of Timestamp.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