To modify your AWS Lambda entry point using AWS Console

sivaranjanibharath

Sivaranjanibharath

Posted on January 11, 2024

To modify your AWS Lambda entry point using AWS Console

Lambda handler is the entry point to your code.When your function is invoked, Lambda runs the handler method. To modify the AWS Lambda entry point using console,follow the below steps:

  • Go to the Functions page of the Lambda console and select your function(ex:bd_register)

Image description

  • Select the Code tab.

Image description

  • Go to the Runtime settings where you can see default lambda handler function(i.e lambda_function). To change the handler function,select Edit.

Image description

  • you can see Handler with default handler name.

Image description

  • Enter the new name(bd_register) for your function handler.

Image description

  • Click save
💖 💪 🙅 🚩
sivaranjanibharath
Sivaranjanibharath

Posted on January 11, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related