Module Values.TaskExecutionFoldersFailedDetailSource

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

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

    The number of directories that DataSync fails to list during your task execution.

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

    The number of directories that DataSync fails to prepare during your task execution.

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

    The number of directories that DataSync fails to transfer during your task execution.

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

    The number of directories that DataSync fails to verify during your task execution.

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

    The number of directories that DataSync fails to delete during your task execution.

    *)
}
Sourceval make : ?list:??? -> ?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