import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { ResiliencehubServiceException as __BaseException } from "./ResiliencehubServiceException"; /** *
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.
* @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionTypeThis exception occurs when there is an internal failure in the Resilience Hub * service.
* @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; /** * @internal */ constructor(opts: __ExceptionOptionTypeThis exception occurs when the specified resource could not be found.
* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** *The identifier of the resource that the exception applies to.
* @public */ resourceId?: string | undefined; /** *The type of the resource that the exception applies to.
* @public */ resourceType?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThis exception occurs when you have exceeded the limit on the number of requests per second.
* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; /** *The number of seconds to wait before retrying the operation.
* @public */ retryAfterSeconds?: number | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThis exception occurs when a request is not valid.
* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionTypeThis exception occurs when a conflict with a previous successful write is detected. This generally occurs * when the previous write did not have time to propagate to the host serving the current * request. A retry (with appropriate backoff logic) is the recommended response to this * exception.
* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** *The identifier of the resource that the exception applies to.
* @public */ resourceId?: string | undefined; /** *The type of the resource that the exception applies to.
* @public */ resourceType?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThis exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the * relevant resources, or use Service Quotas to request a service quota increase.
* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType