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

User does not have permissions to perform this action.

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

The server encountered an internal error and is unable to complete the request.

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

The resource is already created or in use.

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

The resource does not exist in the customer account.

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

The parameter is not valid.

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

The request is not understood by the server.

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

Tags are already registered for the specified application ARN.

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

The number of the provided tags is beyond the limit, or the number of total tags you are * trying to attach to the specified resource exceeds the limit.

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

The name of the resource with too many tags.

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