Module Values.IncompatibleParameterErrorSource

The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request.

Sourcetype nonrec t = {
  1. parameter : Parameter.t option;
    (*

    A parameter that is incompatible with the earlier request.

    *)
  2. message : ErrorMessage.t option;
}
Sourceval make : ?parameter:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Parameter.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