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

The requester has insufficient permissions to perform the operation.

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

Another request is being processed. Wait a few minutes and try again.

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

An error occurred on the server side.

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

The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.

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

The request is invalid. Verify the values provided for the request parameters are * accurate.

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

The resource couldn't be found. Check the ID or name and try again.

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