aws-lambda

AWS Lambda triggered by S3

Echo Input Args in Java

You can get easily get this information by barfing out the input in your handler function. For example, in Java:

public String handleRequest(String input, Context context) {
    context.getLogger().log("Input: " + input);

    String output = "Input:" + System.getProperty("line.separator") + input;
    
    return output;
}

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow