We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ee17b commit 32762e5Copy full SHA for 32762e5
rust-runtime/aws-smithy-http-server/src/routing/lambda_handler.rs
@@ -13,9 +13,10 @@ use tower::Service;
13
14
type HyperRequest = http::Request<hyper::Body>;
15
16
-/// A [`MakeService`] that produces AWS Lambda compliant services.
+/// A [`Service`] that takes a `lambda_http::Request` and converts
17
+/// it to `http::Request<hyper::Body>`.
18
///
-/// [`MakeService`]: tower::make::MakeService
19
+/// [`Service`]: tower::Service
20
#[derive(Debug, Clone)]
21
pub struct LambdaHandler<S> {
22
service: S,
0 commit comments