AWS_Lambda_in_Action icon indicating copy to clipboard operation
AWS_Lambda_in_Action copied to clipboard

This source code distribution is a companion to the AWS Lambda in Action book available from Manning Publications.

Results 8 AWS_Lambda_in_Action issues
Sort by recently updated
recently updated
newest added

Program fails when calling gm(response.Body); ` function transformImage(response, next) { console.log('response object: ', util.inspect(response, {depth: 5})); gm(response.Body).size(function(err, size) { if (err) { console.error('Error transforming image: ', util.inspect(err)); return; } const...

I bought the book and realized that the code base is still node 4 and node 6. Node 6 won't be supported by AWS anymore by may 2019. Are there...

I tried Chapter 09 code and everything worked as expected. But I could not change password. On the changePassword.html page, I get a message that user has logged in and...

This is for the book. You need to mention that in the API gateway, not only do you need to change the 'Integration Response' 200 body to 'text/html' , but...

The file in zip is correct. I just copied and pasted the code from there.

I change password, then if I click on "back" and try to log-in, log-in fails. It works only after refreshing the browser. This is obviously a browser glitch. But I...

Is it possible to query the dynamoDB data directly without using "cognito"? I am asking this because there seems to be no way to back-up Cognito identity. How do I...

Is it possible to move this ID server-side? // Initialize the Amazon Cognito credentials provider AWS.config.region = 'XXX'; // Region AWS.config.credentials = new AWS.CognitoIdentityCredentials({ IdentityPoolId: 'XXX', }); There is no...