Module Values.UpdateErrorSource

Describes the error(s) encountered with the last update of the environment.

Sourcetype nonrec t = {
  1. errorCode : ErrorCode.t option;
    (*

    The error code that corresponds to the error with the last update.

    *)
  2. errorMessage : ErrorMessage.t option;
    (*

    The error message that corresponds to the error code.

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