Module Values.BatchDescribeMergeConflictsErrorSource

Returns information about errors in a BatchDescribeMergeConflicts operation.

Sourcetype nonrec t = {
  1. filePath : Path.t option;
    (*

    The path to the file.

    *)
  2. exceptionName : ExceptionName.t option;
    (*

    The name of the exception.

    *)
  3. message : Message.t option;
    (*

    The message provided by the exception.

    *)
}
Sourceval make : ?filePath:??? -> ?exceptionName:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Path.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