-
Notifications
You must be signed in to change notification settings - Fork 571
Expand file tree
/
Copy pathlambda-basic.html
More file actions
executable file
·15 lines (13 loc) · 1.22 KB
/
lambda-basic.html
File metadata and controls
executable file
·15 lines (13 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="main-body-div" id="main-box">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-xs-12">
<!-- Main Body Content -->
<h2 class="page-title bg-primary">Lambda: Basic Features</h2>
<div class="inner-body panel">
<h4 class="sub-heading">About AWS Lambda</h4>
<div class="inner-body panel">
<p>"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." (<a href="https://aws.amazon.com/lambda/">Source</a>)</p>
<p>"With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app." (<a href="https://aws.amazon.com/lambda/">Source</a>)</p>
</div>
</div>