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

You do not have sufficient access to perform this action.

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

This exception is thrown when an error occurs in the Transfer Family service.

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

This exception is thrown when the client submits a malformed request.

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

The requested resource does not exist, or exists in a region other than the one specified for the command.

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

This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family service.

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

The request has failed because the Amazon Web ServicesTransfer Family service is not available.

* @public */ export declare class ServiceUnavailableException extends __BaseException { readonly name: "ServiceUnavailableException"; readonly $fault: "server"; Message?: string | 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"; RetryAfterSeconds?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The NextToken parameter that was passed is invalid.

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

This exception is thrown when the UpdateServer is called for a file transfer protocol-enabled server that has VPC as the endpoint type and the server's VpcEndpointID is not in the available state.

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