DEV Community

Anika Tasnim
Anika Tasnim

Posted on

AWS Services Overview: Definitions and Real-Life Use Cases

This guide provides a beginner-friendly overview of common AWS compute services. Each compute service is explained with a definition, followed by a real-life example to clarify when and why it's used over other services. Use this guide as a quick reference for learning or brushing up on your AWS knowledge.

Compute Services

  1. Amazon EC2

    • What It Is: Virtual servers that you can configure and manage.
    • Example: You're launching a high-traffic e-commerce website and need full control over the server's setup, operating system, and scaling options. EC2 is ideal when you need customizable servers with specific performance needs, especially for long-running applications.
  2. _AWS Lambda _

    • What It Is: Run code in response to events, without managing servers.
    • Example: You have a photo-sharing app, and every time a user uploads a picture, you want to automatically resize it. Instead of running an always-on server for this task, Lambda can trigger the resizing process when an image is uploaded to S3, saving costs as you only pay for the compute time used.
  3. AWS Elastic Beanstalk

    • What It Is: Platform for deploying and managing web apps without worrying about infrastructure.
    • Example: You’re a developer working on a blog site and want to quickly deploy it without dealing with infrastructure tasks. Elastic Beanstalk simplifies deploying the app while handling scaling, load balancing, and updates automatically. Great for startups or small projects needing quick setups.
  4. AWS Fargate

    • What It Is: Serverless compute engine for running containers.
    • Example: You're managing a microservices architecture where each component runs in a container. Fargate lets you run and scale these containers without needing to provision and manage the underlying servers, making it perfect for teams focusing on application logic rather than infrastructure.
  5. Amazon Lightsail

    • What It Is: Simplified cloud service for virtual private servers and applications.
    • Example: You’re a freelancer developing a small WordPress website for a client. Lightsail offers an easy and cost-effective way to launch and manage this site, providing bundled pricing with fixed resources, making it ideal for small projects with predictable workloads.

Let's break it down using simple language so it's easy to understand, even for a 10-year-old!

Imagine you are building a LEGO city, and you need different types of "workers" to help you. AWS compute services are like different workers that help you build and manage things in your cloud (the cloud is like a huge computer that you can access from anywhere). Each worker has a different job, and you use them depending on what you need to do.

Amazon EC2 (Elastic Compute Cloud)

What it is: EC2 is like hiring a personal assistant who follows every instruction you give. You get to choose everything for them—what they wear (operating system), what tools they use (software), and how much they can work (how powerful they are).

When you use it: You use EC2 when you want full control over everything. Maybe you’re building a big game or website and you need to set things up exactly the way you want.
Why it's different: EC2 gives you full control over your "computer" in the cloud, like building your own LEGO house brick by brick.

AWS Lambda

What it is: Lambda is like having a robot helper who only shows up when you need them. They work very fast, do the job, and then go away when they’re done. You don’t have to pay them when they’re not working.

When you use it: If you have a small task like turning on the lights (running code) whenever someone enters a room (an event happens), Lambda is perfect! It only works when needed, so it saves you money.

Why it's different: Unlike EC2, where you have to keep the assistant around all the time, Lambda only works for short bursts. It’s like hiring a helper just for a quick job!

AWS Elastic Beanstalk

What it is: Elastic Beanstalk is like hiring a manager who sets up everything for you. You tell them, "I want a restaurant (a website or app)," and they handle all the boring stuff like hiring workers, buying furniture (servers), and even expanding if more people come. You don’t have to worry about any of the setup.

When you use it: If you want to launch something quickly, like a simple website, but don’t want to mess with all the technical details, Elastic Beanstalk is perfect. You just give it the instructions and it does the rest.

Why it's different: Unlike EC2 where you do everything yourself, Elastic Beanstalk does the hard work for you. It’s great when you don’t want to handle the technical stuff.

AWS Fargate

What it is: Fargate is like having tiny robots (containers) that do different jobs in your LEGO city. You just tell them what to do, and they take care of it. You don’t have to worry about building a whole new house for each one.

When you use it: When you have lots of little tasks that need to be done separately but quickly, like running parts of a game or a big app in the background, Fargate is perfect.

Why it's different: It’s great when you need to break down big jobs into smaller, faster tasks. You don’t need to manage everything yourself (like in EC2), and it works really well for jobs that come in bits and pieces.

Amazon Lightsail

What it is: Lightsail is like ordering a pre-built LEGO set. You get everything you need in one box (virtual servers, storage, etc.), and it’s super easy to put together. It’s a simple way to get started if you’re new to cloud computing.

When you use it: If you just want to make a small blog, a personal website, or a simple game server, Lightsail is great because it’s easy to set up and everything comes ready for you.

Why it's different: While EC2 is for big and complex projects, Lightsail is for smaller, simpler projects. It’s like starting with a small LEGO set rather than a custom-built one.

Hope this helps! ✨

Top comments (0)