Module Values.ExecutionResultSource

Specifies the end result of the flow run.

Sourcetype nonrec t = {
  1. errorInfo : ErrorInfo.t option;
    (*

    Provides any error message information related to the flow run.

    *)
  2. bytesProcessed : Long.t option;
    (*

    The total number of bytes processed by the flow run.

    *)
  3. bytesWritten : Long.t option;
    (*

    The total number of bytes written as a result of the flow run.

    *)
  4. recordsProcessed : Long.t option;
    (*

    The number of records processed in the flow run.

    *)
  5. numParallelProcesses : Long.t option;
    (*

    The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.

    *)
  6. maxPageSize : Long.t option;
    (*

    The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.

    *)
}
Sourceval make : ?errorInfo:??? -> ?bytesProcessed:??? -> ?bytesWritten:??? -> ?recordsProcessed:??? -> ?numParallelProcesses:??? -> ?maxPageSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `Long of Long.t | `String of ExecutionMessage.t ]) list ]) 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