
org.http4k.serverless.lambdaServerlessCoreExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-serverless-lambda Show documentation
Show all versions of http4k-serverless-lambda Show documentation
Http4k Serverless support for AWS Lambda
package org.http4k.serverless
import com.amazonaws.services.lambda.runtime.Context
import org.http4k.format.AutoMarshalling
import org.http4k.format.AwsLambdaMoshi
/**
* Convenience DSL for constructing polymorphic AWS FnHandlers
*/
inline fun FnLoader(
autoMarshalling: AutoMarshalling = AwsLambdaMoshi,
noinline makeHandler: (Map) -> FnHandler
) = AutoMarshallingFnLoader(autoMarshalling, In::class, makeHandler)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy