As far as I know, there are node modules that are automatically installed by AWS Lambda.
Is it excluded if you know that the module included a request module?
If anyone knows about this part, I would appreciate it if you could let me know.
Thank you.
requestmodule is not installed by default, only NodeJSstandard librariesandaws-sdkare installed by default and the rest of modules will originate from either your lambda layers or the lambda function'snode_modules. You can find more details from here.