AWS Lambda triggered by S3

Other topics

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;
}

Contributors

Topic Id: 6216

Example Ids: 21520

This site is not affiliated with any of the contributors.