Listify/Lambdas/Lists/Picture/src/PicturePUT.java
NMerz 70195632f8 Store Profile Picture on AWS
Save the profile picture to AWS so that the user need not retrieve it every time.
2020-11-29 15:19:10 -05:00

12 lines
394 B
Java

import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestHandler;
import java.util.Map;
public class PicturePUT implements RequestHandler<Map<String,Object>, Object> {
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
return BasicHandler.handleRequest(inputMap, unfilled, PicturePutter.class);
}
}