Create userID retrieval Lambda

Allow for the retrieval of userIDs from email (or just generally).

This may need the apigateway passthrough info modified for privacy protection
This commit is contained in:
NMerz
2020-10-24 12:52:45 -04:00
parent c6b5e28755
commit 2637cab282
2 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestHandler;
import java.util.Map;
public class UserGET implements RequestHandler<Map<String,Object>, Object> {
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
return BasicHandler.handleRequest(inputMap, unfilled, UserGetter.class);
}
}