Module Values.AsyncErrorDetailsSource

Error details for the failed asynchronous operation.

Sourcetype nonrec t = {
  1. code : MaxLength1024String.t option;
    (*

    A string that uniquely identifies the error condition.

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

    A generic description of the error condition in English.

    *)
  3. resource : MaxLength1024String.t option;
    (*

    The identifier of the resource associated with the error.

    *)
  4. requestId : MaxLength1024String.t option;
    (*

    The ID of the request associated with the error.

    *)
}
Sourceval make : ?code:??? -> ?message:??? -> ?resource:??? -> ?requestId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MaxLength1024String.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