| Interface | Description |
|---|---|
| ApplicationContextProvider |
| Class | Description |
|---|---|
| JacksonSpringRequestHandler<I,O> |
Lambda does JSON parsing behind the scenes, but it can be a little
restrictive.
|
| SpringRequestHandler<I,O> |
Central class to extend to provide Spring support for your AWS Lambda
applications.
|
| SpringRequestStreamHandler |
Similar functionality to
SpringRequestHandler, except instead of
using Java objects as parameters and letting Lambda handle the
deserialization, this class exposes the raw byte streams for manipulation. |
| SpringVoidRequestHandler<I> |
Exactly the same as
SpringRequestHandler, except with no output (void). |
| VoidRequestHandler<T> |
Convenience class which represents a
RequestHandler that returns nothing. |