Module Values.ReportResultSource

Indicates whether DataSync created a complete task report for your transfer.

Sourcetype nonrec t = {
  1. status : PhaseStatus.t option;
    (*

    Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.

    *)
  2. errorCode : String_.t option;
    (*

    Indicates the code associated with the error if DataSync can't create a complete report.

    *)
  3. errorDetail : String_.t option;
    (*

    Provides details about issues creating a report.

    *)
}
Sourceval make : ?status:??? -> ?errorCode:??? -> ?errorDetail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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