Module Values.FailedReasonSource

The failure reason, if any, for a create or delete endpoint operation.

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

    The failure code, if any, for a create or delete endpoint operation.

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

    Additional error details describing the endpoint failure and recommended action.

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