Values.DataTransferProgressSourceDescribes the status of a cluster while it is in the process of resizing with an incremental resize.
type nonrec t = {status : String_.t option;Describes the status of the cluster. While the transfer is in progress the status is transferringdata.
*)currentRateInMegaBytesPerSecond : DoubleOptional.t option;Describes the data transfer rate in MB's per second.
*)totalDataInMegaBytes : Long.t option;Describes the total amount of data to be transfered in megabytes.
*)dataTransferredInMegaBytes : Long.t option;Describes the total amount of data that has been transfered in MB's.
*)estimatedTimeToCompletionInSeconds : LongOptional.t option;Describes the estimated number of seconds remaining to complete the transfer.
*)elapsedTimeInSeconds : LongOptional.t option;Describes the number of seconds that have elapsed during the data transfer.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of DoubleOptional.t
| `Long of Long.t
| `String of String_.t ])
list ]