Module Values.AccessDeniedExceptionSource

The request issuer does not have permission to access this resource or perform this operation.

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

    The SDK default error code associated with the access denied exception.

    *)
  3. errorCodeReason : ErrorCodeReason.t option;
    (*

    The SDK default explanation of why access was denied.

    *)
  4. subErrorCode : ErrorCode.t option;
    (*

    The error code associated with the access denied exception.

    *)
  5. subErrorCodeReason : ErrorCodeReason.t option;
    (*

    An explanation of why access was denied.

    *)
}
Sourceval make : ?message:??? -> ?errorCode:??? -> ?errorCodeReason:??? -> ?subErrorCode:??? -> ?subErrorCodeReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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