import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { ConflictType, ResourceType } from "./enums"; import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException"; /** *

You do not have sufficient permissions to perform this action. Check the error message * and try again.

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

The request failed due to a conflict. Check the ConflictType and error * message for more details.

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

The type of conflict which caused a ConflictException. Possible types and the * corresponding error messages are as follows:

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

The request failed due to an unknown error on the server side.

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

The specified resource cannot be found. Check the ResourceType and error * message for more details.

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

The type of resource which cannot not be found. Possible types are * BATCH_JOB, COMPLIANCE_CONSENT, DOMAIN, * FRAUDSTER, SESSION and SPEAKER.

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

The request exceeded the service quota. Refer to Voice ID Service Quotas and try your request again.

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

The request was denied due to request throttling. Please slow down your request rate. * Refer to * Amazon Connect Voice ID Service API throttling quotas and try your * request again.

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

The request failed one or more validations; check the error message for more * details.

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