Module Values.ReportOverridesSource

The level of detail included in each aspect of your DataSync task report.

Sourcetype nonrec t = {
  1. transferred : ReportOverride.t option;
    (*

    Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.

    *)
  2. verified : ReportOverride.t option;
    (*

    Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify at the end of your transfer.

    *)
  3. deleted : ReportOverride.t option;
    (*

    Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location. This only applies if you configure your task to delete data in the destination that isn't in the source.

    *)
  4. skipped : ReportOverride.t option;
    (*

    Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.

    *)
}
Sourceval make : ?transferred:??? -> ?verified:??? -> ?deleted:??? -> ?skipped:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) 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