Custom Runtime
This is the custom runtime that is used to deploy the lambda function natively with GraalVM. It is a component in the light-aws-lambda repository.
The Runtime class is the entry point with the main method. Each lambda function will specify this class as the Main-Class in the manifest.
jar {
manifest {
attributes 'Main-Class': 'com.networknt.aws.lambda.Runtime'
}
}