Tenho essa função aws lambda:
public Boolean handleRequest(final String request, final Context context)`
{
logger.log(String.format("Received Request: %s", request));`
return true;
}
como consigo mapeá-la para API Gateway no serverless.yml?
Atualmente está assim:
functions:
logging:
handler: com.br.handlers.LoggingHandler
events:
- http:
path: test/logging
integration: lambda
method: GET
ao chamar a API em /dev/test/logging estou recebendo o erro:
"com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of java.lang.String out of START_OBJECT token\n at [Source: lambdainternal.util.NativeMemoryAsInputStream@1a968a59; line: 5, column: 3]","errorType":"java.io.UncheckedIOException"