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

More than one process tried to modify a resource at the same time.

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

This operation attempted to create a resource that already exists.

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

Some part of the dashboard data is invalid.

* @public */ export declare class DashboardInvalidInputError extends __BaseException { readonly name: "DashboardInvalidInputError"; readonly $fault: "client"; dashboardValidationMessages?: DashboardValidationMessage[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The specified dashboard does not exist.

* @public */ export declare class DashboardNotFoundError extends __BaseException { readonly name: "DashboardNotFoundError"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The named resource does not exist.

* @public */ export declare class ResourceNotFound extends __BaseException { readonly name: "ResourceNotFound"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Request processing has failed due to some unknown error, exception, or * failure.

* @public */ export declare class InternalServiceFault extends __BaseException { readonly name: "InternalServiceFault"; readonly $fault: "server"; /** *

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

Parameters were used together that cannot be used together.

* @public */ export declare class InvalidParameterCombinationException extends __BaseException { readonly name: "InvalidParameterCombinationException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The value of an input parameter is bad or out-of-range.

* @public */ export declare class InvalidParameterValueException extends __BaseException { readonly name: "InvalidParameterValueException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

An input parameter that is required is missing.

* @public */ export declare class MissingRequiredParameterException extends __BaseException { readonly name: "MissingRequiredParameterException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The named resource does not exist.

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

The next token specified is invalid.

* @public */ export declare class InvalidNextToken extends __BaseException { readonly name: "InvalidNextToken"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The operation exceeded one or more limits.

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

The quota for alarms for this customer has already been reached.

* @public */ export declare class LimitExceededFault extends __BaseException { readonly name: "LimitExceededFault"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Data was not syntactically valid JSON.

* @public */ export declare class InvalidFormatFault extends __BaseException { readonly name: "InvalidFormatFault"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); }