title |
---|
\@qwik.dev/qwik-router/middleware/aws-lambda API Reference |
API › @qwik.dev/qwik-router/middleware/aws-lambda
Warning: This API is now obsolete.
Use
createQwikRouter
instead. Will be removed in V3
createQwikCity: typeof createQwikRouter;
export declare function createQwikRouter(opts: AwsOpt): {
fixPath: (pathT: string) => string;
router: (
req: import("http").IncomingMessage | import("http2").Http2ServerRequest,
res: import("http").ServerResponse,
next: import("@qwik.dev/router/middleware/node").NodeRequestNextFunction,
) => Promise<void>;
staticFile: (
req: import("http").IncomingMessage | import("http2").Http2ServerRequest,
res: import("http").ServerResponse,
next: (e?: any) => void,
) => Promise<void>;
notFound: (
req: import("http").IncomingMessage | import("http2").Http2ServerRequest,
res: import("http").ServerResponse,
next: (e: any) => void,
) => Promise<void>;
handle: (req: any, res: any) => void;
};
Parameter |
Type |
Description |
---|---|---|
opts |
AwsOpt |
{ fixPath: (pathT: string) => string; router: (req: import("http").IncomingMessage | import("http2").Http2ServerRequest, res: import("http").ServerResponse, next: import("@qwik.dev/router/middleware/node").NodeRequestNextFunction) => Promise<void>; staticFile: (req: import("http").IncomingMessage | import("http2").Http2ServerRequest, res: import("http").ServerResponse, next: (e?: any) => void) => Promise<void>; notFound: (req: import("http").IncomingMessage | import("http2").Http2ServerRequest, res: import("http").ServerResponse, next: (e: any) => void) => Promise<void>; handle: (req: any, res: any) => void; }
export interface PlatformAwsLambda extends Object
Extends: Object
Warning: This API is now obsolete.
Use
QwikRouterAwsLambdaOptions
instead. Will be removed in V3
export type QwikCityAwsLambdaOptions = QwikRouterAwsLambdaOptions;
References: QwikRouterAwsLambdaOptions
export interface QwikRouterAwsLambdaOptions extends ServerRenderOptions
Extends: ServerRenderOptions