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

Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access management for Amazon Web Services resources in the IAM user guide.

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

The name of the exception.

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

The requested operation conflicts with the current state of the specified resource or with another request.

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

The identifier of the resource which is in conflict with the requested operation.

* @public */ ResourceId?: string | undefined; /** *

The type of the resource which is in conflict with the requested operation.

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

Indicates the request has failed to process because of an unknown server error, exception, or failure.

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

The name of the exception.

* @public */ amznErrorType?: string | undefined; /** *

The number of seconds to wait before retrying the request.

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

The requested operation would exceed the allowed quota for the specified resource type.

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

The identifier of the resource which exceeds the service quota.

* @public */ ResourceId?: string | undefined; /** *

The type of the resource which exceeds the service quota.

* @public */ ResourceType?: string | undefined; /** *

The code for the service of the exceeded quota.

* @public */ ServiceCode?: string | undefined; /** *

The code for the exceeded service quota.

* @public */ QuotaCode?: string | undefined; /** *

The name of the exception.

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

The request throughput limit was exceeded.

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

Indicates input validation failed. Check your request parameters and retry the request.

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

The errors in the input which caused the exception.

* @public */ Errors?: ValidationError[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The specified resource (such as a telemetry rule) could not be found.

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

The identifier of the resource which could not be found.

* @public */ ResourceId?: string | undefined; /** *

The type of the resource which could not be found.

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

The requested operation cannot be completed on the specified resource in the current state.

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