Module Values.DataRepositoryTaskStatusSource

Provides the task status showing a running total of the total number of files to be processed, the number successfully processed, and the number of files the task failed to process.

Sourcetype nonrec t = {
  1. totalCount : TotalCount.t option;
    (*

    The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.

    *)
  2. succeededCount : SucceededCount.t option;
    (*

    A running total of the number of files that the task has successfully processed.

    *)
  3. failedCount : FailedCount.t option;
    (*

    A running total of the number of files that the task failed to process.

    *)
  4. lastUpdatedTime : LastUpdatedTime.t option;
    (*

    The time at which the task status was last updated.

    *)
  5. releasedCapacity : ReleasedCapacity.t option;
    (*

    The total amount of data, in GiB, released by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.

    *)
}
Sourceval make : ?totalCount:??? -> ?succeededCount:??? -> ?failedCount:??? -> ?lastUpdatedTime:??? -> ?releasedCapacity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of TotalCount.t | `Timestamp of LastUpdatedTime.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