Relative Content

Tag Archive for aws-lambda

What purpose serves code signing in AWS lambda?

AWS offers code signing in AWS lambda and the documentation states, that this makes sure, that you are preventing lambda code from being deployed from people who got access to your function. So if the intruder alters the function, he could as well just sign the function again.

Use lambda function to replace the original functions in AWS Full-Stack React Application

I have just finished building the react note app from aws.
https://aws.amazon.com/getting-started/hands-on/build-react-app-amplify-graphql/module-one/?nc1=h_ls
For practice purpose, I want to replace those functions:fecthNotes, createNotes and deleteNotes in App.js using lambda function. However, I am totally new to javascript and all the things I wrote are generated by chatGPT. I successfully replaced fecthNotes, but I meet some problems in createNotes.