Module Values.DataTransferProgressSource

Describes the status of a cluster while it is in the process of resizing with an incremental resize.

Sourcetype nonrec t = {
  1. status : String_.t option;
    (*

    Describes the status of the cluster. While the transfer is in progress the status is transferringdata.

    *)
  2. currentRateInMegaBytesPerSecond : DoubleOptional.t option;
    (*

    Describes the data transfer rate in MB's per second.

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

    Describes the total amount of data to be transfered in megabytes.

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

    Describes the total amount of data that has been transfered in MB's.

    *)
  5. estimatedTimeToCompletionInSeconds : LongOptional.t option;
    (*

    Describes the estimated number of seconds remaining to complete the transfer.

    *)
  6. elapsedTimeInSeconds : LongOptional.t option;
    (*

    Describes the number of seconds that have elapsed during the data transfer.

    *)
}
Sourceval make : ?status:??? -> ?currentRateInMegaBytesPerSecond:??? -> ?totalDataInMegaBytes:??? -> ?dataTransferredInMegaBytes:??? -> ?estimatedTimeToCompletionInSeconds:??? -> ?elapsedTimeInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DoubleOptional.t | `Long of Long.t | `String of String_.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