Module Values.ValidationExceptionSource

The input doesn't meet the constraints set by the Amazon Q Business service. Provide the correct input and try again.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
    (*

    The message describing the ValidationException.

    *)
  2. reason : ValidationExceptionReason.t option;
    (*

    The reason for the ValidationException.

    *)
  3. fields : ValidationExceptionFields.t option;
    (*

    The input field(s) that failed validation.

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