This project demonstrates the deployment of a basic AWS Lambda function using the AWS Management Console.
The function was written in Python and tested directly from the Lambda console. CloudWatch Logs were used to monitor execution and verify successful invocation.
- Learn AWS Lambda fundamentals
- Create a serverless function
- Deploy Python code
- Test the function
- Monitor execution using CloudWatch Logs
- AWS Lambda
- Amazon CloudWatch
- Python 3.x
User
↓
AWS Lambda
↓
Execute Python Function
↓
CloudWatch Logs
Created a Lambda function named:
HelloWorld
Screenshot:
The default code was replaced with a simple Hello World Lambda function.
Example code:
def lambda_handler(event, context):
print("Hello from AWS Lambda")
return {
"statusCode":200,
"body":"Hello from AWS Lambda"
}A test event was created inside the Lambda console to invoke the function.
The Monitor tab was used to observe function execution metrics.
CloudWatch Logs confirmed that the Lambda function executed successfully.
- AWS Lambda
- Serverless Computing
- Python
- CloudWatch Monitoring
- Event Testing
- AWS Console Navigation
This project introduced the basics of serverless computing using AWS Lambda.
I learned how to:
- Create Lambda functions
- Deploy Python code
- Invoke functions manually
- Monitor executions
- View CloudWatch Logs
Elochukwu Princewill
Aspiring Cloud & Cybersecurity Engineer





