Module Values.TaskExecutionFilesFailedDetailSource

The number of files or objects that DataSync fails to prepare, transfer, verify, and delete during your task execution. Applies only to Enhanced mode tasks.

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

    The number of files or objects that DataSync fails to prepare during your task execution.

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

    The number of files or objects that DataSync fails to transfer during your task execution.

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

    The number of files or objects that DataSync fails to verify during your task execution.

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

    The number of files or objects that DataSync fails to delete during your task execution.

    *)
}
Sourceval make : ?prepare:??? -> ?transfer:??? -> ?verify:??? -> ?delete:??? -> 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