aws-lambda
AWS Lambda utlöst av S3
Sök…
Echo Input Args i Java
Du kan enkelt få den här informationen genom att ta bort inmatningen i din hanterarfunktion. Till exempel i Java:
public String handleRequest(String input, Context context) {
context.getLogger().log("Input: " + input);
String output = "Input:" + System.getProperty("line.separator") + input;
return output;
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow