Values.JobProgressReportSourceThe progress report for the import job.
type nonrec t = {totalNumberOfScannedFiles : GenericLong.t option;The number of files scanned from the S3 input bucket.
*)totalSizeOfScannedFilesInMB : GenericDouble.t option;The size (in MB) of files scanned from the S3 input bucket.
*)totalNumberOfImportedFiles : GenericLong.t option;The number of files imported.
*)totalNumberOfResourcesScanned : GenericLong.t option;The number of resources scanned from the S3 input bucket.
*)totalNumberOfResourcesImported : GenericLong.t option;The number of resources imported.
*)totalNumberOfResourcesWithCustomerError : GenericLong.t option;The number of resources that failed due to customer error.
*)totalNumberOfFilesReadWithCustomerError : GenericLong.t option;The number of files that failed to be read from the S3 input bucket due to customer error.
*)throughput : GenericDouble.t option;The transaction rate the import job is processed at.
*)}val make :
?totalNumberOfScannedFiles:??? ->
?totalSizeOfScannedFilesInMB:??? ->
?totalNumberOfImportedFiles:??? ->
?totalNumberOfResourcesScanned:??? ->
?totalNumberOfResourcesImported:??? ->
?totalNumberOfResourcesWithCustomerError:??? ->
?totalNumberOfFilesReadWithCustomerError:??? ->
?throughput:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Double of GenericDouble.t | `Long of GenericLong.t ]) list ]