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

User does not have permission to perform this action.

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

Adding, updating, or deleting the resource can cause an inconsistent state.

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

Id of the resource in the conflicting operation.

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

Type of the resource in the conflicting operation.

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

An unexpected error occurred while processing a request.

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

Resource does not exist.

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

Id of the not found resource.

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

Type of the font found resource.

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

The request was denied because it exceeded the allowed API request rate.

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

The input did not meet the specified constraints.

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

The request was denied because the resource can't have any more tags.

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

Name of the resource that exceeds maximum number of tags allowed.

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