package eu.ortlepp.notificationsender; import com.amazonaws.services.lambda.runtime.Context; import com.amazonaws.services.lambda.runtime.RequestHandler; public class NotificationHandler implements RequestHandler { public String handleRequest(String event, Context context) { return event.toLowerCase(); } }