What is ''aws-lambda-go'' and what does it have to do with domain forwarding ?

honor

Power Member
Joined
Mar 6, 2013
Messages
618
Reaction score
75
What is ''aws-lambda-go'' ?

and what does it have to do with domain forwarding ?
 
Lambda is AWS’s serverless service that allows you to run functions written in various programming languages. The benefit to using lambda is you don’t need to run your own server for small or infrequent requests. For domain redirects you can point your domain to an AWS lambda function that redirects your request to a different domain. Go is just a programming language you can use to write your function that does the redirect.
 
Lambda is AWS’s serverless service that allows you to run functions written in various programming languages. The benefit to using lambda is you don’t need to run your own server for small or infrequent requests. For domain redirects you can point your domain to an AWS lambda function that redirects your request to a different domain. Go is just a programming language you can use to write your function that does the redirect.

I want to run aws-lamda-go github project on netlify and want to make domain redirect.Problem is,i cant import this https://github.com/aws/aws-lambda-go to the netlify.Netlify allows only the projects on my github accounts.How to do it ?
 
You create your own git repository. Pull down the AWS lambda go into your new project then you can commit and deploy.
 
Back
Top