Module Values.JobProgressReportSource

The progress report for the import job.

Sourcetype nonrec t = {
  1. totalNumberOfScannedFiles : GenericLong.t option;
    (*

    The number of files scanned from the S3 input bucket.

    *)
  2. totalSizeOfScannedFilesInMB : GenericDouble.t option;
    (*

    The size (in MB) of files scanned from the S3 input bucket.

    *)
  3. totalNumberOfImportedFiles : GenericLong.t option;
    (*

    The number of files imported.

    *)
  4. totalNumberOfResourcesScanned : GenericLong.t option;
    (*

    The number of resources scanned from the S3 input bucket.

    *)
  5. totalNumberOfResourcesImported : GenericLong.t option;
    (*

    The number of resources imported.

    *)
  6. totalNumberOfResourcesWithCustomerError : GenericLong.t option;
    (*

    The number of resources that failed due to customer error.

    *)
  7. totalNumberOfFilesReadWithCustomerError : GenericLong.t option;
    (*

    The number of files that failed to be read from the S3 input bucket due to customer error.

    *)
  8. throughput : GenericDouble.t option;
    (*

    The transaction rate the import job is processed at.

    *)
}
Sourceval make : ?totalNumberOfScannedFiles:??? -> ?totalSizeOfScannedFilesInMB:??? -> ?totalNumberOfImportedFiles:??? -> ?totalNumberOfResourcesScanned:??? -> ?totalNumberOfResourcesImported:??? -> ?totalNumberOfResourcesWithCustomerError:??? -> ?totalNumberOfFilesReadWithCustomerError:??? -> ?throughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of GenericDouble.t | `Long of GenericLong.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