import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { ResourceType, ServiceCode } from "./enums"; import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException"; /** *

You don't have sufficient access to perform this operation.

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

The request processing has failed because of an unknown error, exception or * failure.

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

Request references a resource which doesn't exist.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** * The identifier for the requested resource * @public */ resourceIdentifier?: string | undefined; /** * The resource type * @public */ resourceType?: ResourceType | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request was denied due to request throttling.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; /** * Originating service code * @public */ serviceCode: ServiceCode | undefined; /** * Originating quota code * @public */ quotaCode: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The input fails to satisfy the constraints specified by an Amazon Web Services * service.

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

Updating or deleting a resource causes an inconsistent state.

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** * The identifier of the requested resource * @public */ resourceIdentifier?: string | undefined; /** * The resource type * @public */ resourceType?: ResourceType | undefined; /** * If present in the output, the operation can be retried after this time * @public */ retryAfter?: Date | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Request would cause a service quota to be exceeded.

* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** * The identifier for the requested resource * @public */ resourceIdentifier?: string | undefined; /** * The resource type * @public */ resourceType?: ResourceType | undefined; /** * Originating service code * @public */ serviceCode: ServiceCode | undefined; /** * Originating quota code * @public */ quotaCode: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }