Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.5 KB

Lambda.md

File metadata and controls

26 lines (23 loc) · 1.5 KB
 _                 _         _                                 _                 _ _ 
| |               | |       | |                               | |               (_) |
| | __ _ _ __ ___ | |__   __| | __ _ ______ ___  ___ _ __   __| |_ __ ___   __ _ _| |
| |/ _` | '_ ` _ \| '_ \ / _` |/ _` |______/ __|/ _ \ '_ \ / _` | '_ ` _ \ / _` | | |
| | (_| | | | | | | |_) | (_| | (_| |      \__ \  __/ | | | (_| | | | | | | (_| | | |
|_|\__,_|_| |_| |_|_.__/ \__,_|\__,_|      |___/\___|_| |_|\__,_|_| |_| |_|\__,_|_|_|

AWS Lambda

AWS Lambda lets you run code without provisioning or managing servers. You pay only for the compute time you consume - there is no charge when your code is not running.

Create Lambda function

  • Step 1. Go to the AWS Lambda Console CLICK HERE
  • Step 2. Sign In into your aws account. And choose a region
  • Step 3. Click on "Create a Function” orange button at the right side. Admin Console
  • Step 4. Select the Author from scratch option, Go1.x runtime, And enter a function name, Role name And then press "Create function" Create
  • Step 5. upload zip file, and enter the binary file name in Handler. And then press "Save" orange button at the top right side. upload
  • Step 6. set Environment variables. And then press "Save" orange button at the top Environment