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

You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization * request. An explicit denial occurs when a policy contains a Deny statement for the specific * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also * no applicable Allow statement.

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

A coded string to provide more information about the access denied exception. You can use the error code to check the exception type.

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

The request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

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

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 resource name.

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

The resource type.

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

Internal service exceptions are sometimes caused by transient issues. Before you start * troubleshooting, perform the operation again.

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

The resource could not be found.

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

The name of the resource that could not be found.

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

The type of the resource that could not be found.

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

The limit on the number of requests per second was exceeded.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; $retryable: { throttling: boolean; }; /** *

The code for the service in Service Quotas.

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

That the rate of requests to Security Lake is exceeding the request quotas for your Amazon Web Services account.

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

Retry the request after the specified time.

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