Hey so I downloaed all the tools for AWS toolkit required for eclipse, and new im trying to create A new AWS lambda project and I give it a package, project name and change input type to custom then provide String for input type and out Type, after loading it creates a project but comes back with errors so, please can some tell my what's wrong??
package com.amazonaws.lambda.demo;
import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestHandler;
public class LambdaFunctionHandler implements RequestHandler<String, String> {
@Override
public String handleRequest(String input, Context context) // error is this hanleRequest it states Multiple markers at this line
- The method handleRequest(String, Context) of type LambdaFunctionHandler must override a superclass method
- implements {
context.getLogger().log("Input: " + input);
// TODO: implement your handler
return null;
}
}
}