Skip to content
Advertisement

Tag: aws-lambda

Getting the client request domain from Lambda@Edge function

I’m trying do something like below for HTTP 301 redirect, so that web users will redirect to different news pages. However, seems like this request.origin.domainName == “mydomain.com” part is not working in my function. Is this correct way to pick the domain name which client coming from? I think this request.origin.domainName method will not work as Origin Object support only

Uncaught exception in AWS lambda javascript

I am trying to elicit an intent from Amazon LEX through lambda but I was given an error calling uncaught exception. Would appreciate the help, my code is as follows: Answer The “uncaught exception” error usually means that a response is not being provided for the specific type of input. In your case, the callback is not being reached. Simply

Change Woocommerce API functions to async/await using NodeJS in AWS Lambda

I am looking to change a couple of Woocommerce API calls so each function finishes before the next functions proceeds. However, I am unsure how to do this without breaking the specific Node Woocommerce API code. https://woocommerce.github.io/woocommerce-rest-api-docs/?javascript#create-an-order-note How can I change those two Woocommerce POST functions to Async/Await so it works with AWS Lambda? (I have included an existing await

How to automatically zip files with Node.js and npm

Is there a way to automatically zip certain files at the build time with Node.js and npm? For example, I have a project, that file structure looks like this: I want to be able to zip lib folder, certain modules from node_modules and index.js into some zip archive to upload it on the AWS Lambda, for example. I do not

Advertisement