Skip to content

SeanRoy/lambduh-maven-annotations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lambduh-maven-annotations

Annotations to facilitate configuration of lambda functions.

These annotations make it possible to identify multiple functions from the same code base for deployment to AWS Lambda.

Usage

group id: com.github.seanroy
artifact id: lambduh-maven-annotations
version:1.0.0

/**
 * Hello world!
 *
 */
public class App 
{
    @LambduhFunction(functionName="Hello-World")
    public static void hello_world( String[] args )
    {
        System.out.println( "Hello World!" );
    }
    
    @LambduhFunction(functionName="Goodbye-World")
    public static void goodbye_world( String [] args ) {
        System.out.println( "Goodbye World!" );
    }
}

About

Annotations to facilitate configuration of lambda functions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages