Skip to content
Learn Netverks

Lesson

Step 2/36 6% through track

what-is-aws

What is AWS?

Last reviewed Jun 1, 2026 Content v20260601
Track mode
none
Means
Read / quiz
Reading
~2 min
Level
beginner

This lesson

This lesson teaches What is AWS?: AWS concepts, console/CLI practice patterns, and how the service fits in a typical cloud architecture.

Teams apply What is AWS? in every serious AWS rollout—skipping it leaves blind spots in reviews and incidents.

You will apply What is AWS? in contexts like: Production hosting, data pipelines, and corporate cloud landing zones.

Read the lesson, reproduce steps in your AWS Free Tier or sandbox (console and optional AWS CLI), diagram the architecture in notes, and complete MCQs—no in-browser cloud lab.

After you can deploy a simple web app locally—when you will own infrastructure, study for Solutions Architect, or join a team on AWS.

AWS is a collection of on-demand cloud services operated by Amazon. You pay for what you use (often per hour, per GB, or per request) instead of capital expense on hardware.

Core characteristics

  • Elasticity — scale resources up or down as traffic changes
  • Global reach — many regions and edge locations worldwide
  • Managed services — RDS, Lambda, S3 handle ops tasks for you
  • Shared responsibility — AWS secures the cloud; you secure what you put in it
  • API-driven — Console, CLI, and SDKs control the same underlying APIs

Service categories (high level)

CategoryExamplesTypical use
ComputeEC2, LambdaRun application code
StorageS3, EBSFiles, backups, static assets
DatabaseRDS, DynamoDBStructured or key-value data
NetworkingVPC, Route 53Private networks, DNS
SecurityIAM, KMSIdentity, encryption keys

List services in your account

# Optional — requires appropriate IAM permissions
aws ec2 describe-regions --query 'Regions[].RegionName' --output table
aws s3 ls  # lists buckets if S3 read access is granted

Practice: Use the AWS Free Tier or a dedicated sandbox account. Run optional CLI steps in a terminal with aws configure using a non-production IAM user—never root keys.

Who uses AWS?

Startups, enterprises, and governments host web apps, data pipelines, ML workloads, and internal tools. Full-stack developers combine AWS with Python (boto3) or Node.js (AWS SDK v3).

Important interview questions and answers

  1. Q: IaaS vs PaaS vs SaaS on AWS?
    A: EC2 is IaaS (you manage OS); Elastic Beanstalk is PaaS; WorkDocs is SaaS—AWS spans all layers.
  2. Q: Is AWS only for big companies?
    A: Free tier and pay-as-you-go make it accessible for learning and small projects—with billing guardrails.

Self-check

  1. Name three AWS service categories and one example each.
  2. What does shared responsibility mean in one sentence?

Tip: Group services by compute, storage, database, networking, and security when studying.

Interview prep

What is AWS?

On-demand cloud platform offering compute, storage, databases, networking, and security services.

Shared responsibility?

AWS secures the cloud infrastructure; customers secure data, IAM, network config, and applications.

Interview tip Lesson completion confidence

Can you explain this lesson in 30 seconds without reading notes?

Not saved yet.

Check yourself

Multiple choice — immediate feedback.

Discussion

Past discussion is visible to everyone. Only logged-in users can post comments and replies.

Starter discussion topics

  • Shared responsibility?
  • EC2 vs S3 category?

Sign up or log in to post comments and sync lesson progress across devices.

No discussion yet. Be the first to ask a question.

Jump