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

CodeStar Notifications can't create the notification rule because you do not have sufficient * permissions.

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

CodeStar Notifications can't complete the request because the resource is being modified by * another process. Wait a few minutes and try again.

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

Some or all of the configuration is incomplete, missing, or not valid.

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

One of the CodeStar Notifications limits has been exceeded. Limits apply to * accounts, notification rules, notifications, resources, and targets. For more * information, see Limits.

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

A resource with the same name or ID already exists. Notification rule names must be * unique in your Amazon Web Services account.

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

One or more parameter values are not valid.

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

CodeStar Notifications can't find a resource that matches the provided ARN.

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

The value for the enumeration token used in the request to return the next batch of the results is not valid.

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