Home › Forums › AWS › AWS Certified Solutions Architect Associate › AWS Lambda with a Python library for processing. › Reply To: AWS Lambda with a Python library for processing.
-
Hi Denzil,
Thank you for posting here.
AWS Lambda is a serverless computing service that allows you to run code without provisioning or managing servers. It automatically runs your code in response to events or triggers, such as changes in data stored in Amazon S3. Lambda functions can be written in various programming languages, including Python.
Key points about AWS Lambda:
- Serverless: You don’t have to manage any servers or infrastructure.
- Event-driven: Lambda functions are triggered by events, such as file uploads to S3.
- Pay per use: You only pay for the compute time your code consumes.
- Automatic scaling: Lambda automatically scales your code to handle increased workloads.
- AWS Lambda supports various programming languages, including Python.
- You can include Python libraries in your Lambda function deployment package to perform the necessary data processing and summarization tasks.
Here is an AWS Lambda Cheat Sheet you can read:
https://tutorialsdojo.com/aws-lambda/Hope this helps.
Regards,
Neil @ Tutorials Dojo