Module Values.BadRequestExceptionSource

The input fails to satisfy the constraints specified by the service.

Sourcetype nonrec t = {
  1. message : String_.t option;
  2. reason : BadRequestReason.t option;
    (*

    Code indicating the reason the request was invalid.

    *)
  3. details : BadRequestDetails.t option;
    (*

    Details describing why the request was invalid.

    *)
}
Sourceval make : ?message:??? -> ?reason:??? -> ?details:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `Enum of string ]) list ]) list ]) list ]) 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