Adding API Gateway as Trigger to Lambda Function Using Serverless Script not the UI

194 Views Asked by At

I want to write a script/code/serverless script that when run adds a trigger to the specified Lambda function. I can deploy a lambda function using a script, I have added a trigger by going to the aws console and clicking the options from there, Also added a post method to trigger the lambda. I want to do this using a piece of code/ script that can run on was cli or anywhere. Is it possible to do that?

1

There are 1 best solutions below

1
On

Instead of using CLI or scripts you can use AWS CDK to deploy Infrastructure as Code.

For creating and deploying lambda with API Gateway check this example.

You can get yourself familiar with AWS CDK from this workshop. There are many other resources available on internet as well.