What have we learned?
AWS has more than a hundred services, and we have learned about the important Python-related services. Let’s walk through those services:
- Lambda: Lambda is a cloud computing service that allows you to run Python applications. You don’t need to provision any server; Lambda manages the infrastructure.
- EC2: EC2 provides a server machine in the cloud. You can create a server and install the required applications, or whatever you want.
- Elastic Beanstalk: Elastic Beanstalk is used to deploy Python-based web applications.
- CloudWatch: CloudWatch is a logging and monitoring service on AWS. You can easily track your services.
- RDS: RDS is a relational database service on AWS. If you need a database, you can easily create it without managing the server.
- API Gateway: API Gateway is used to create, maintain, and publish an application programming interface.
- DynamoDB: DynamoDB is a key-value database that is used to query and store...