Values.DataMigrationStatisticsSourceInformation about the data migration run, including start and stop time, latency, and migration progress.
type nonrec t = {tablesLoaded : Integer.t option;The number of tables loaded in the current data migration run.
*)elapsedTimeMillis : Long.t option;The elapsed duration of the data migration run.
*)tablesLoading : Integer.t option;The data migration's table loading progress.
*)fullLoadPercentage : Integer.t option;The data migration's progress in the full-load migration phase.
*)cDCLatency : Integer.t option;The current latency of the change data capture (CDC) operation.
*)tablesQueued : Integer.t option;The number of tables that are waiting for processing.
*)tablesErrored : Integer.t option;The number of tables that DMS failed to process.
*)startTime : Iso8601DateTime.t option;The time when the migration started.
*)stopTime : Iso8601DateTime.t option;The time when the migration stopped or failed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Integer.t
| `Long of Long.t
| `Timestamp of Iso8601DateTime.t ])
list ]