Skip to content

Latest commit

 

History

History

Week 6

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
aliases date tags
UML Cloud Computing Club Lambda Presentation
2024/02/22
uml
c3
aws
lambda

Lambda


What is AWS Lambda

  • Function as a Service (FaaS)
  • Serverless
  • Automatic scaling & pay as you go

What can it Do?

  • Runs your code
  • Event driven
    • Manually triggered
    • S3
    • Cron (EventBridge Rule)

Whats Supported

  • Node.js
  • Python
  • Ruby
  • Java
  • .NET
  • Container Images

Other Features

  • Monitoring metrics
  • Memory & Timeout
  • Integrates with AWS IAM
  • Environment variables
  • Attach to VPC to allow connectivity to private resources
  • Concurrency

Pricing (ref)

Standard pricing ![[Pasted image 20240220095111.png]]

The AWS Lambda free tier includes one million free requests per month and 400,000 GB-seconds of compute time per month


Demo


QA