Module Values.ReplicationTaskStatsSource

In response to a request by the DescribeReplicationTasks operation, this object provides a collection of statistics about a replication task.

Sourcetype nonrec t = {
  1. fullLoadProgressPercent : Integer.t option;
    (*

    The percent complete for the full load migration task.

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

    The elapsed time of the task, in milliseconds.

    *)
  3. tablesLoaded : Integer.t option;
    (*

    The number of tables loaded for this task.

    *)
  4. tablesLoading : Integer.t option;
    (*

    The number of tables currently loading for this task.

    *)
  5. tablesQueued : Integer.t option;
    (*

    The number of tables queued for this task.

    *)
  6. tablesErrored : Integer.t option;
    (*

    The number of errors that have occurred during this task.

    *)
  7. freshStartDate : TStamp.t option;
    (*

    The date the replication task was started either with a fresh start or a target reload.

    *)
  8. startDate : TStamp.t option;
    (*

    The date the replication task was started either with a fresh start or a resume. For more information, see StartReplicationTaskType.

    *)
  9. stopDate : TStamp.t option;
    (*

    The date the replication task was stopped.

    *)
  10. fullLoadStartDate : TStamp.t option;
    (*

    The date the replication task full load was started.

    *)
  11. fullLoadFinishDate : TStamp.t option;
    (*

    The date the replication task full load was completed.

    *)
}
Sourceval make : ?fullLoadProgressPercent:??? -> ?elapsedTimeMillis:??? -> ?tablesLoaded:??? -> ?tablesLoading:??? -> ?tablesQueued:??? -> ?tablesErrored:??? -> ?freshStartDate:??? -> ?startDate:??? -> ?stopDate:??? -> ?fullLoadStartDate:??? -> ?fullLoadFinishDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t | `Timestamp of TStamp.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