Module Values.AccessDeniedExceptionSource

You do not have sufficient access to perform this action.

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

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

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

    A string that uniquely identifies a reason for the error.

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

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

    *)
}
Sourceval make : ?error:??? -> ?reason:??? -> ?error_description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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