Module Values.DataTransferSource

Defines the real-time status of a Snow device's data transfer while the device is at Amazon Web Services. This data is only available while a job has a JobState value of InProgress, for both import and export jobs.

Sourcetype nonrec t = {
  1. bytesTransferred : Long.t option;
    (*

    The number of bytes transferred between a Snow device and Amazon S3.

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

    The number of objects transferred between a Snow device and Amazon S3.

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

    The total bytes of data for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

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

    The total number of objects for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

    *)
}
Sourceval make : ?bytesTransferred:??? -> ?objectsTransferred:??? -> ?totalBytes:??? -> ?totalObjects:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.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