Module Values.InvalidRequestRegionExceptionSource

Indicates that a token provided as input to the request was issued by and is only usable by calling IAM Identity Center endpoints in another region.

Sourcetype nonrec t = {
  1. error : Error.t option;
    (*

    Single error code. For this exception the value will be invalid_request.

    *)
  2. error_description : ErrorDescription.t option;
    (*

    Human-readable text providing additional information, used to assist the client developer in understanding the error that occurred.

    *)
  3. endpoint : Location.t option;
    (*

    Indicates the IAM Identity Center endpoint which the requester may call with this token.

    *)
  4. region : Region.t option;
    (*

    Indicates the region which the requester may call with this token.

    *)
}
Sourceval make : ?error:??? -> ?error_description:??? -> ?endpoint:??? -> ?region:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Error.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