Sébastien Abbal

Results 2 comments of Sébastien Abbal

I had this problem with `serverless-plugin-warmup`, and i need to set my payload event like this: ```json { "body": null, "httpMethod": "GET", "path": "/my-path", "requestContext": {} } ``` --> Now,...

For typescript, I don't have errors if I use that kind of payload : ```typescript lambda.invoke({ FunctionName: 'my-lamba', InvocationType: 'RequestResponse', Payload: Buffer.from(JSON.stringify({ foo: 'bar' })), }); ``` Hope it will...