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

The container that you specified in the request already exists or is being * updated.

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

The container that you specified in the request does not exist.

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

The CORS policy that you specified in the request does not exist.

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

The service is temporarily unavailable.

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

A service limit has been exceeded.

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

The policy that you specified in the request does not exist.

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