@aws-sdk/client-lex-runtime-service
Version:
AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native
80 lines (79 loc) • 2.91 kB
TypeScript
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
import { LexRuntimeServiceServiceException as __BaseException } from "./LexRuntimeServiceServiceException";
export declare class BadRequestException extends __BaseException {
readonly name: "BadRequestException";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<BadRequestException, __BaseException>
);
}
export declare class ConflictException extends __BaseException {
readonly name: "ConflictException";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
}
export declare class InternalFailureException extends __BaseException {
readonly name: "InternalFailureException";
readonly $fault: "server";
constructor(
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
);
}
export declare class LimitExceededException extends __BaseException {
readonly name: "LimitExceededException";
readonly $fault: "client";
retryAfterSeconds?: string | undefined;
constructor(
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
);
}
export declare class NotFoundException extends __BaseException {
readonly name: "NotFoundException";
readonly $fault: "client";
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
}
export declare class BadGatewayException extends __BaseException {
readonly name: "BadGatewayException";
readonly $fault: "server";
Message?: string | undefined;
constructor(
opts: __ExceptionOptionType<BadGatewayException, __BaseException>
);
}
export declare class DependencyFailedException extends __BaseException {
readonly name: "DependencyFailedException";
readonly $fault: "client";
Message?: string | undefined;
constructor(
opts: __ExceptionOptionType<DependencyFailedException, __BaseException>
);
}
export declare class LoopDetectedException extends __BaseException {
readonly name: "LoopDetectedException";
readonly $fault: "server";
Message?: string | undefined;
constructor(
opts: __ExceptionOptionType<LoopDetectedException, __BaseException>
);
}
export declare class NotAcceptableException extends __BaseException {
readonly name: "NotAcceptableException";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<NotAcceptableException, __BaseException>
);
}
export declare class RequestTimeoutException extends __BaseException {
readonly name: "RequestTimeoutException";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<RequestTimeoutException, __BaseException>
);
}
export declare class UnsupportedMediaTypeException extends __BaseException {
readonly name: "UnsupportedMediaTypeException";
readonly $fault: "client";
constructor(
opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>
);
}