From f1fa867e9b0a9a2440e7fa6404dd2ec9fb4d8448 Mon Sep 17 00:00:00 2001 From: Daniel Abdelsamed Date: Wed, 25 Jan 2023 21:09:35 -0500 Subject: [PATCH] Minor verbiage tweaks --- docs/source/deployment/lambda.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/source/deployment/lambda.mdx b/docs/source/deployment/lambda.mdx index d61e12cf64a..70a354fd6a1 100644 --- a/docs/source/deployment/lambda.mdx +++ b/docs/source/deployment/lambda.mdx @@ -501,9 +501,7 @@ exports.handler = serverlessExpress({ app }); ## Customizing HTTP behavior -The `@as-integrations/aws-lambda` package is compatible with the following event types `APIGatewayProxyEvent`, `APIGatewayProxyEventV2`, `ALBEvent`. This supports a wide range of services like API Gateway HTTP Proxy APIs, API Gateway REST Proxy APIs, Lambda Function URLs, and Application Load Balancers. However, it does not let you customize HTTP behavior directly or support other AWS products that invoke Lambda functions (e.g., S3 or DynamoDB). - -If you want to customize your HTTP behavior, you can couple Apollo Server's Express integration (i.e., [`expressMiddleware`](../api/express-middleware)) with the [`@vendia/serverless-express`](https://github.com/vendia/serverless-express) package. The `@vendia/serverless-express` library translates between Lambda events and Express requests. Despite their similar names, the Serverless CLI and the `@vendia/serverless-express` package are unrelated. +If you want to customize your HTTP routing behavior, you can couple Apollo Server's Express integration (i.e., [`expressMiddleware`](../api/express-middleware)) with the [`@vendia/serverless-express`](https://github.com/vendia/serverless-express) package. The `@vendia/serverless-express` library translates between Lambda events and Express requests. Despite their similar names, the Serverless CLI and the `@vendia/serverless-express` package are unrelated. You can update your Apollo Server setup to the following to have a fully functioning Lambda server that works in a variety of AWS features: