import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { ChimeSDKVoiceServiceException as __BaseException } from "./ChimeSDKVoiceServiceException"; import type { ErrorCode } from "./enums"; /** *

You don't have the permissions needed to run this action.

* @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The input parameters don't match the service's restrictions.

* @public */ export declare class BadRequestException extends __BaseException { readonly name: "BadRequestException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The client is permanently forbidden from making the request.

* @public */ export declare class ForbiddenException extends __BaseException { readonly name: "ForbiddenException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The requested resource couldn't be found.

* @public */ export declare class NotFoundException extends __BaseException { readonly name: "NotFoundException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The service encountered an unexpected error.

* @public */ export declare class ServiceFailureException extends __BaseException { readonly name: "ServiceFailureException"; readonly $fault: "server"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The service is currently unavailable.

* @public */ export declare class ServiceUnavailableException extends __BaseException { readonly name: "ServiceUnavailableException"; readonly $fault: "server"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The number of customer requests exceeds the request rate limit.

* @public */ export declare class ThrottledClientException extends __BaseException { readonly name: "ThrottledClientException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The client isn't authorized to request a resource.

* @public */ export declare class UnauthorizedClientException extends __BaseException { readonly name: "UnauthorizedClientException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request exceeds the resource limit.

* @public */ export declare class ResourceLimitExceededException extends __BaseException { readonly name: "ResourceLimitExceededException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Multiple instances of the same request were made simultaneously.

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Access to the target resource is no longer available at the origin server. This condition is likely to be permanent.

* @public */ export declare class GoneException extends __BaseException { readonly name: "GoneException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

A well-formed request couldn't be followed due to semantic errors.

* @public */ export declare class UnprocessableEntityException extends __BaseException { readonly name: "UnprocessableEntityException"; readonly $fault: "client"; Code?: ErrorCode | undefined; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }