import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException"; /** *

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

* @public */ export declare class BadRequestException extends __BaseException { readonly name: "BadRequestException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The request id associated with the call responsible for the exception.

* @public */ RequestId?: 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?: string | undefined; Message?: string | undefined; /** *

The request id associated with the call responsible for the exception.

* @public */ RequestId?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request exceeds the resource limit.

* @public */ export declare class LimitExceededException extends __BaseException { readonly name: "LimitExceededException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The request id associated with the call responsible for the exception.

* @public */ RequestId?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

One or more of the resources in the request does not exist in the system.

* @public */ export declare class NotFoundException extends __BaseException { readonly name: "NotFoundException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The request ID associated with the call responsible for the exception.

* @public */ RequestId?: 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?: string | undefined; Message?: string | undefined; /** *

The ID of the failed request.

* @public */ RequestId?: 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?: string | undefined; Message?: string | undefined; /** *

The request id associated with the call responsible for the exception.

* @public */ RequestId?: string | undefined; /** *

The number of seconds the caller should wait before retrying.

* @public */ RetryAfterSeconds?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The number of customer requests exceeds the request rate limit.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The ID of the request that exceeded the throttling limit.

* @public */ RequestId?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The user isn't authorized to request a resource.

* @public */ export declare class UnauthorizedException extends __BaseException { readonly name: "UnauthorizedException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The request id associated with the call responsible for the exception.

* @public */ RequestId?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request was well-formed but was unable to be followed due to semantic errors.

* @public */ export declare class UnprocessableEntityException extends __BaseException { readonly name: "UnprocessableEntityException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The request id associated with the call responsible for the exception.

* @public */ RequestId?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Multiple instances of the same request have been made simultaneously.

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The ID of the request involved in the conflict.

* @public */ RequestId?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The resource that you want to tag couldn't be found.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The ID of the resource that couldn't be found.

* @public */ RequestId?: string | undefined; /** *

The name of the resource that couldn't be found.

* @public */ ResourceName?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Too many tags were added to the specified resource.

* @public */ export declare class TooManyTagsException extends __BaseException { readonly name: "TooManyTagsException"; readonly $fault: "client"; Code?: string | undefined; Message?: string | undefined; /** *

The ID of the request that contains too many tags.

* @public */ RequestId?: string | undefined; /** *

The name of the resource that received too many tags.

* @public */ ResourceName?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }