FREE!! Open Source - A Technical Recruiter's Daily Wiki
← Back to dashboard Login
AWS Cloud A Recruiter's Explainer Guide
FREE!! Open Source - A Technical Recruiter's Daily Wiki

Understanding Amazon AWS
without the jargon.

A plain-English reference for recruiters who hire for AWS roles — what the world's biggest cloud platform actually does, the services that fill résumés, the people who build with them, and exactly how to find and screen them.

200+
Services on the platform
9
Core role families covered
7
Tech stacks explained
200+ building blocks
The big picture

So, what is Amazon AWS?

If you only remember one thing: AWS (Amazon Web Services) is a giant set of computers, storage, and software tools that Amazon rents out over the internet, so companies don't have to buy and run their own. It's the largest cloud platform in the world.

The "rent vs. build" analogy

Imagine you want to open a restaurant. You could spend a fortune building your own commercial kitchen, buying ovens, and hiring people to maintain them — before serving a single customer. Or you could rent a fully-equipped commercial kitchen by the hour, scale up when you're busy, and pay only for the time you use.

AWS is that rented kitchen, but for computing. Instead of buying servers and running them in a data centre, a company "rents" Amazon's computing power, storage, and ready-made tools over the internet, paying only for what they use. Amazon built this infrastructure to run its own colossal store — then opened it for everyone else to rent. It launched in 2006 and effectively created the modern cloud industry.

It's rented infrastructure

Virtual computers, storage drives, networks, and databases — all available on demand in minutes. No hardware to buy, no data centre to run. Turn it on when needed, off when not.

It's a 200+ service toolbox

On top of raw infrastructure sit ready-made tools: databases, analytics, AI, security, messaging. Companies assemble these like LEGO instead of building everything from scratch.

It's pay-as-you-go

Like a utility bill. A company spends more during a busy sale, scales down overnight, and the cost follows usage. This is why "cost optimisation" is a real, paid job in cloud teams.

It's the market leader

Netflix, Airbnb, NASA, banks, and start-ups run on AWS. Roughly a third of all cloud spending goes to AWS — so "AWS experience" is one of the most common requirements you'll source for.

In plain English

A few names cause confusion. AWS is Amazon's cloud platform — the engineering side this guide is about. Amazon.com is the shopping site (different thing). Service names follow a pattern: "Amazon [something]" or "AWS [something]" — e.g., Amazon S3, AWS Lambda. They're nearly always shortened on résumés (S3, EC2, RDS). If a résumé is full of two- and three-letter names starting with E, S, or R, that's AWS.

The platform, in 7 parts

The AWS tech stacks

"Tech stack" just means the set of tools used to build something. AWS's 200+ services group into seven families. You don't need to operate them — you need to recognise them on a résumé and know roughly what each is for.

1 · Compute & Infrastructure

The actual "computers" that run an application's code
Foundation

This is the engine room. When a company runs a website, an app, or background processing, the code has to execute somewhere. These services are the different kinds of "somewhere" — from a full rented computer you manage yourself, to a service where you just hand Amazon your code and it runs automatically.

Amazon EC2

"Elastic Compute Cloud" — rent a virtual computer and run anything on it. The original, most flexible AWS service.

AWS Lambda

"Serverless" — give Amazon a small piece of code; it runs only when triggered, and you pay per use. Hugely popular.

Amazon ECS & EKS

Run apps packaged in "containers" and scale them automatically. EKS is the managed Kubernetes version — industry standard.

Fargate & Elastic Beanstalk

"Just run my containers/app, don't make me manage servers." The easiest, lowest-maintenance ways to deploy.

Where you'll see it

Every company on AWS uses something here. A retailer's checkout, a bank's mobile app, a streaming backend — the running code lives on EC2, Lambda, or containers. "EC2" and "Lambda" are two of the most common terms you'll ever source for.

2 · Storage & Databases

Where all the data lives — files, records, and everything between
Data layer

Apps need to remember things: user accounts, orders, photos, transactions. Different data needs different storage — a video isn't stored like a bank balance. These services are those different "filing systems."

Amazon S3

"Simple Storage Service" — a giant online drive for files: images, video, backups, data lakes. The single most famous AWS service. Files live in "buckets."

Amazon RDS & Aurora

Traditional "spreadsheet-like" databases (rows and columns) for orders and users. Aurora is Amazon's faster, cloud-built version.

Amazon DynamoDB

A super-fast, massive-scale database for apps that need instant responses at any size — gaming, retail, mobile.

EBS, EFS & ElastiCache

Hard drives for EC2 (EBS), shared file storage (EFS), and an ultra-fast "memory" cache that speeds apps up (ElastiCache).

Where you'll see it

A photo app stores images in S3 and accounts in RDS. A game uses DynamoDB for instant player data. A bank uses Aurora for transactions. "S3" appears on almost every AWS résumé.

3 · Data & Analytics

Turning huge piles of raw data into business answers
Insights

Companies collect enormous amounts of data, but it's useless until someone asks it questions: "Which products sell best on Fridays?" "Which customers are about to leave?" This stack is the machinery for collecting, cleaning, and questioning data at huge scale.

Amazon Redshift

A data warehouse — answers questions across billions of rows fast. The flagship analytics service; common on data résumés.

Athena & EMR

Ask questions directly against files in S3 (Athena), and process truly massive datasets in big batches (EMR).

AWS Glue & Kinesis

Cleans and moves data between systems (Glue) and handles live, real-time data streams as they happen (Kinesis).

Amazon QuickSight

Turns data into dashboards and charts that business teams actually read — the "report" layer on top of the data.

Where you'll see it

Retailers forecast demand, banks detect fraud in real time, media firms analyse viewing, and marketing teams build dashboards — often with Redshift or Athena at the centre and Glue moving the data.

4 · AI & Machine Learning

Teaching software to predict, recognise, and generate
High demand

Machine learning means software that learns patterns from examples instead of being told every rule. This stack lets companies build their own AI (a model predicting which customers will churn) or tap ready-made AI, including the latest generative-AI models, through a single service.

Amazon SageMaker

The one-stop workshop to build, train, and run custom AI models. The most important name in this stack for ML engineers.

Amazon Bedrock

One door to many top generative-AI models (including Anthropic's Claude). The headline service for building AI assistants and agents.

Q
Amazon Q

Amazon's AI assistant for businesses and developers — answers questions about a company's own data and code.

Rekognition, Comprehend, Textract

Pre-built AI that reads images, understands text sentiment, and pulls data out of forms — no model-building required.

Where you'll see it

Insurers automate claims with Textract, retailers personalise recommendations, contact centres deploy AI assistants, and nearly every industry is now piloting Bedrock-based generative-AI applications.

5 · DevOps & Developer Tools

The assembly line that ships code safely and fast
Delivery

"DevOps" is the practice of getting new software changes from a developer's laptop into the live product quickly without breaking things. This stack is the conveyor belt and the quality control: build the code, test it, package it, release it, watch it.

CloudFormation & CDK

"Infrastructure as code" — set up the entire cloud from a written script instead of clicking buttons. Repeatable and reviewable.

CodePipeline, CodeBuild, CodeDeploy

The automated "CI/CD pipeline": every code change is built, tested, and shipped automatically and safely.

CloudWatch & CloudTrail

The dashboards and alarms that show when something is slow or broken (CloudWatch), and a record of who did what (CloudTrail).

Amazon ECR & X-Ray

A secure storeroom for packaged software (ECR) and a tool that traces a request to find what's slow (X-Ray).

Where you'll see it

Any company releasing software frequently — fintech, SaaS, media — lives here. "CI/CD," "CloudFormation," and "Terraform" on a résumé point straight to this stack.

6 · Networking & Content Delivery

The roads, routing, and traffic control between everything
Connectivity

If compute is the buildings and storage is the warehouses, networking is the roads, on-ramps, and traffic lights connecting them — and connecting users to the company. It decides how data travels, how fast, and how safely.

Amazon VPC

"Virtual Private Cloud" — a company's own private, walled-off network inside AWS. The foundation everything else connects to.

CloudFront & Route 53

Caches content close to users worldwide for speed (CloudFront, a CDN), and translates website names into addresses (Route 53, DNS).

Elastic Load Balancing

Spreads incoming traffic across many servers so no single one is overwhelmed during a spike. Keeps sites up under load.

Direct Connect & API Gateway

A private high-speed line from a company's own data centre to AWS (Direct Connect), and a managed "front door" for APIs (API Gateway).

Where you'll see it

Critical for banks (private, compliant connectivity), global media (fast delivery via CloudFront), and any large enterprise running a "hybrid" mix of AWS and their own data centres.

7 · Security & Identity

Who is allowed to do what — and keeping attackers out
Trust layer

Every other stack is only as safe as this one. Security & Identity controls who can access which resources, encrypts sensitive data, watches for threats, and proves the company meets regulations. In banking, healthcare, and government this stack is non-negotiable.

AWS IAM

"Identity & Access Management" — the master keyring defining exactly who (or which app) can do what. The single most important security concept on AWS.

AWS KMS & Secrets Manager

Safely stores encryption keys and passwords so they're never left lying around in code or files.

GuardDuty & Security Hub

Automatically watches for attacks and suspicious behaviour (GuardDuty) and shows all risks in one dashboard (Security Hub).

Amazon Cognito, WAF & Shield

Manages app sign-in/sign-up (Cognito), filters malicious web traffic (WAF), and blocks large-scale attacks (Shield).

Where you'll see it

Heaviest in regulated industries — banking, healthcare, government, insurance — where "IAM," "compliance," and "zero trust" on a résumé are strong signals for security roles.

In plain English

Nobody knows all 200+ services, and you don't need to. Fast mental model: a candidate heavy on EC2 / Lambda / EKS is an infrastructure/DevOps person; Redshift / Glue / Kinesis is a data person; SageMaker / Bedrock is an AI/ML person; IAM / GuardDuty is a security person; VPC / CloudFront is a networking person. Use the stack a résumé leans into to predict the role family.

The people behind the platform

The nine core role families

These are the job titles you'll be sourcing. For each: a plain-English description of what they do, the skills to look for, how the role shows up across industries, and where they spend time online. Compensation ranges are broad U.S. community estimates that vary heavily by seniority, location, and employer — use them only to calibrate conversations, never to quote candidates.

AWS Solutions Architect

Design & strategyMid – senior / leadCert: AWS Certified Solutions Architect
$130K–$200K+
Typical U.S. range
What they actually do

AWS's signature role and one of the most in-demand cloud titles anywhere. The "town planner" of a company's cloud: they decide which AWS services to use, how they fit together, how to keep cost and risk down, and how to migrate existing systems over. They produce blueprints; engineers build to them.

Senior, big-picture role. They translate business goals ("handle 10x traffic on launch day") into a technical design.

Skills to look for
Solution designWell-Architected FrameworkCloud migrationCost optimisationSecurity basicsStakeholder communication
How it shows up across industries
  • Banking: designing compliant, resilient systems regulators will accept.
  • Retail: architecting for huge seasonal traffic without overspending all year.
  • Healthcare: data platforms that keep patient data private and auditable.
  • Consulting/MSPs: architects design AWS solutions for many client companies.
Where they live online

AWS re:Post community, AWS Heroes & Community Builders directories, Medium, the AWS Architecture Center, certification (Credly) badge directories, and architecture-focused LinkedIn groups. Many speak at AWS user groups — a searchable signal.

Cloud Engineer & SysOps Administrator

Build & operateJunior – seniorCert: AWS SysOps Administrator Associate
$110K–$160K
Typical U.S. range
What they actually do

The hands-on builder and operator. While the architect draws the plan, this person constructs and runs it: setting up servers, networks, databases, and access, then keeping them healthy day to day. The broadest, most common AWS role — the "general contractor."

Heavy overlap with DevOps; many job ads use the titles interchangeably.

Skills to look for
EC2 / VPC / S3Terraform / CloudFormationLinux & scriptingAWS CLIIAMPython or Bash
How it shows up across industries
  • SaaS: the backbone team keeping the product running and scaling.
  • Manufacturing: connecting factory data to AWS and operating it reliably.
  • Media: running high-traffic streaming and content infrastructure.
  • Public sector: migrating and operating government workloads under strict rules.
Where they live online

GitHub (Terraform/infrastructure repos), Stack Overflow, the r/aws subreddit, AWS re:Post, and local AWS User Groups / AWS Community Days held in most major cities.

DevOps Engineer & Site Reliability Engineer (SRE)

Automation & reliabilityMid – seniorCert: AWS DevOps Engineer Professional
$130K–$190K
Typical U.S. range
What they actually do

They build the "assembly line" that ships software automatically (CI/CD) and own keeping the live product reliable. SRE treats reliability as an engineering problem using measurable targets ("SLOs") and "error budgets" instead of guesswork.

If something breaks at 3 a.m., this team is paged. Their job is to make sure it almost never does.

Skills to look for
CI/CD (CodePipeline / Jenkins)Containers / EKSTerraformCloudWatch / monitoringSLO / SLI / error budgetsIncident response
How it shows up across industries
  • Fintech: zero-downtime releases on systems that move money.
  • E-commerce: surviving traffic spikes without the site going down.
  • Gaming: keeping always-on multiplayer services stable globally.
  • Telecom: reliability engineering for services with millions of users.
Where they live online

GitHub, the CNCF / Kubernetes community (Slack, KubeCon), DevOps subreddits, Stack Overflow, and SRE/DevOps conference speaker lists — a goldmine for senior talent.

Data Engineer

Data pipelinesMid – seniorCert: AWS Data Engineer Associate
$120K–$180K
Typical U.S. range
What they actually do

They build the "plumbing" that moves data from where it's created (apps, sensors, transactions) to where it's analysed (Redshift / S3 data lake), cleaning and reshaping it along the way. Without them, analysts and data scientists have nothing reliable to work with.

They build and maintain the pipes; analysts and scientists drink the water.

Skills to look for
Redshift / AthenaSQL (advanced)AWS Glue / SparkPythonKinesis / streamingS3 data lakes
How it shows up across industries
  • Retail: unifying online + store data for demand forecasting.
  • Healthcare: compliant pipelines for clinical and claims data.
  • Finance: real-time pipelines feeding fraud and risk models.
  • AdTech/Marketing: processing massive event streams for targeting.
Where they live online

Kaggle, GitHub, Stack Overflow, the dbt & data-engineering communities, Medium data publications, and data-focused Slack/Discord groups.

Machine Learning & AI Engineer

Models & AI productsMid – seniorCert: AWS Machine Learning Engineer / Specialty
$140K–$210K+
Typical U.S. range
What they actually do

They build, train, and deploy machine-learning models — and increasingly, generative-AI applications using Amazon Bedrock. On AWS this centres on SageMaker. They turn a business problem ("predict which loans will default") into a working, monitored model in production.

The fastest-growing, highest-paid family on the platform, especially anyone with generative-AI / LLM experience.

Skills to look for
Amazon SageMakerPython (ML)TensorFlow / PyTorchMLOpsBedrock / LLMs / RAGData wrangling
How it shows up across industries
  • Insurance: automated claims and risk scoring.
  • Retail: recommendation engines and demand prediction.
  • Healthcare: diagnostic-support and imaging models.
  • Customer service: Bedrock-powered assistants and agents.
Where they live online

Kaggle (competition rankings are real signal), Hugging Face, GitHub, arXiv (research-leaning candidates), and ML-focused Discord/Slack communities.

Cloud Security Engineer

Protection & complianceMid – seniorCert: AWS Security Specialty
$140K–$190K
Typical U.S. range
What they actually do

They make sure the cloud is locked down: who can access what (IAM), data is encrypted, threats are detected, and the company can prove it meets regulations. They think like an attacker to defend like a professional.

Demand is acute in regulated industries and rising everywhere as AI expands the attack surface.

Skills to look for
IAM & least privilegeGuardDuty / Security HubEncryption / KMSZero trustCompliance (SOC2, HIPAA)Network security
How it shows up across industries
  • Banking: regulatory compliance and protecting financial data.
  • Healthcare: HIPAA-grade patient data protection.
  • Government: strict access controls and auditability.
  • SaaS: SOC 2 / ISO certification to win enterprise customers.
Where they live online

Security subreddits and forums, GitHub security tooling, conference CTF and talk lists, certification directories, and security communities (ISC2, local OWASP/cloud-security chapters).

Cloud Network Engineer

Connectivity & performanceMid – seniorCert: AWS Advanced Networking Specialty
$130K–$185K
Typical U.S. range
What they actually do

They design and run the "roads" of the cloud: private networks (VPC), load balancing, secure links to a company's own data centres, and global content delivery. They make sure data gets where it needs to go — fast, reliably, and privately.

Especially important for large enterprises running "hybrid" setups (part AWS, part their own hardware).

Skills to look for
VPC designLoad balancingDirect Connect / VPNRoute 53 / DNS / CDNTransit GatewayRouting & firewalls
How it shows up across industries
  • Telecom: high-throughput, low-latency network design.
  • Banking: private, compliant connectivity between sites and AWS.
  • Media: global content delivery for streaming at scale.
  • Enterprise IT: connecting legacy data centres to AWS.
Where they live online

Networking communities and forums, certification holders (often dual-certified with Cisco/CCNP), GitHub network-automation repos, and infrastructure-focused groups.

Cloud Application Developer

Building the app itselfJunior – seniorCert: AWS Developer Associate
$110K–$170K
Typical U.S. range
What they actually do

They write the actual software — the app or service customers use — designed to run natively on AWS. They use serverless tools (Lambda, API Gateway), databases (DynamoDB), and AWS APIs to build features quickly without managing servers.

Closest to a traditional software engineer, but cloud-native by default.

Skills to look for
Lambda / API GatewayPython / Node / Java / GoDynamoDBAPIs & microservicesContainers (Docker)AWS SDK
How it shows up across industries
  • SaaS: building the core product features and APIs.
  • Retail: e-commerce, loyalty, and mobile app backends.
  • Logistics: tracking and routing applications.
  • Start-ups: shipping product fast with serverless tools.
Where they live online

GitHub (active project portfolios are the strongest signal), Stack Overflow, dev.to, AWS user groups, hackathon platforms, and language-specific communities.

Cloud Database Engineer / Administrator

Data stores & performanceMid – seniorSkill focus: RDS / Aurora / DynamoDB
$115K–$170K
Typical U.S. range
What they actually do

They choose, set up, tune, and protect the databases holding a company's most critical data. They make databases fast, ensure they never lose data, plan disaster recovery, and migrate cleanly from old systems (e.g., Oracle/SQL Server) onto AWS.

Quiet but mission-critical — when a database is slow or down, the whole business feels it. (AWS retired its standalone Database Specialty exam, so look for hands-on RDS/Aurora/DynamoDB depth rather than that specific cert.)

Skills to look for
RDS / AuroraDynamoDBSQL tuningMigration (DMS)Backup & disaster recoveryHigh availability
How it shows up across industries
  • Finance: ultra-reliable transaction databases.
  • Retail: high-traffic catalogue and order systems.
  • Healthcare: durable, compliant patient-record stores.
  • Enterprise: large Oracle/SQL-Server-to-AWS migrations.
Where they live online

Database-specific forums and user groups, GitHub, Stack Overflow / DBA Stack Exchange, PostgreSQL/MySQL communities, and certification directories.

Finding the candidates

The sourcing toolkit

Ready-to-paste search strings, plus the platforms beyond LinkedIn where AWS talent actually congregates. Boolean strings work in LinkedIn Recruiter, Google search, and most ATS keyword fields.

Boolean search strings by role family

"AND" means both must appear; "OR" means any one; quotes keep phrases together; brackets group options. Copy, paste, and swap the location or seniority terms as needed.

Solutions Architect / Cloud Engineer
(AWS OR "Amazon Web Services") AND ("Solutions Architect" OR "Cloud Architect" OR "Cloud Engineer" OR "Infrastructure Engineer") AND (EC2 OR VPC OR Terraform OR CloudFormation) AND (certified OR "Solutions Architect Associate" OR SAA)
Data Engineer
(AWS OR "Amazon Web Services") AND ("Data Engineer" OR "Analytics Engineer" OR "ETL Developer") AND (Redshift OR Glue OR Athena OR Kinesis OR EMR) AND (SQL OR Python OR Spark)
Machine Learning / AI Engineer
(AWS OR SageMaker OR Bedrock) AND ("Machine Learning Engineer" OR "ML Engineer" OR "AI Engineer") AND (SageMaker OR TensorFlow OR PyTorch OR Bedrock) AND (MLOps OR LLM OR "generative AI")
DevOps / SRE
(AWS OR "Amazon Web Services") AND ("DevOps" OR "Site Reliability" OR SRE OR "Platform Engineer") AND (Kubernetes OR EKS OR "CI/CD" OR CodePipeline) AND (Terraform OR SLO OR "error budget")
Cloud Security Engineer
(AWS OR "Amazon Web Services") AND ("Cloud Security" OR "Security Engineer" OR "Security Architect") AND (IAM OR GuardDuty OR "Security Hub" OR "zero trust") AND (compliance OR SOC2 OR HIPAA OR ISO27001)
Add to any string — certification & seniority filters
AND ("AWS Certified" OR "Solutions Architect Professional" OR "DevOps Engineer Professional") // certified only AND (senior OR lead OR principal OR staff) // senior only NOT (recruiter OR sales OR "looking for") // strip noise

Where to look beyond LinkedIn

AWS talent is unusually visible — many publish code, write tutorials, earn public badges, answer questions, and join user groups. These platforms surface candidates who don't show up in a LinkedIn search.

GitHub

Code & portfolios

Search by language + AWS keywords. Active repos, Terraform modules, and contribution history are the strongest proof of real skill for engineers and developers.

Stack Overflow

Q&A reputation

Filter by AWS-specific tags. High-reputation answerers on EC2, S3, Lambda, or Terraform questions are demonstrably knowledgeable practitioners.

re:Post

AWS re:Post

Official Q&A community

AWS's official community. "Selected" answerers and high-reputation members are verified, engaged practitioners — easy to identify and often open to opportunities.

AWS Heroes & Community Builders

Recognised experts

Public directories of AWS-recognised experts and rising practitioners. Among the highest-signal talent pools that exist for the platform.

AWS User Groups & Community Days

Local meetups

Volunteer-run communities in most cities worldwide. Organisers and speakers are highly skilled and well-networked — excellent for warm sourcing and referrals.

Credly

Badge directory

AWS certifications are issued as Credly badges. The public directory is searchable by certification — a clean way to find verified Associate/Professional holders.

Kaggle

Data & ML

Competition rankings, public notebooks, and dataset work are verifiable signals for data engineers and ML/AI engineers. "Kaggle Master" is meaningful.

Medium & dev.to

Technical writing

Practitioners explaining what they've built on AWS. Authors are self-identified experts — great for senior outreach with credible context.

Reddit (r/aws)

Community pulse

Not a direct sourcing tool, but invaluable for understanding what real practitioners care about — sharpens your screening questions and outreach credibility.

In plain English

The single highest-signal move for AWS roles: verify badges. A candidate with a public Credly badge for "AWS Certified Solutions Architect – Professional," or who appears in the AWS Heroes / Community Builders directory, has provably done the work. It cuts through résumé inflation faster than any keyword.

Build your own fluency

The learning library

The fastest way to stop feeling lost on a screening call is to watch someone explain the concept once. Below are channels and official resources chosen for non-technical viewers, organised by the top skills you'll encounter — each with a direct link. Subscriber counts are approximate and change over time; links point to channels and official resource hubs (which stay stable) rather than individual videos (which can be removed).

01 AWS fundamentals — the whole platform

Amazon Web Services (official channel)

Official · ~750K subscribers · Start here

AWS's own channel. The "AWS in a Minute" and "Back to Basics" series explain individual services in plain terms — ideal pre-screen prep.

youtube.com/@amazonwebservices

freeCodeCamp.org

~10M subscribers · Full free courses

Home of Andrew Brown's famous free AWS Certified Cloud Practitioner course. Long, but the first 30–60 minutes give a recruiter the whole mental model.

youtube.com/@freecodecamp
Skill Builder

AWS Skill Builder (official, free tier)

Official website · 600+ free courses · Best structured primer

AWS's own free learning platform. The "AWS Cloud Practitioner Essentials" path is the single best non-technical foundation that exists — no coding.

skillbuilder.aws

AWS Certification & learning paths (official)

Official website · Role-by-role roadmaps

The official certification hub. Shows exactly which cert maps to which role — useful for writing accurate job descriptions and understanding seniority.

aws.amazon.com/certification
02 Containers & DevOps (EKS, CI/CD)

TechWorld with Nana

~1.2M subscribers · Best DevOps explainer

Famous for explaining containers, Kubernetes, and CI/CD in genuinely plain terms with clear diagrams. The "DevOps in 10 minutes" video is ideal recruiter prep.

youtube.com/@TechWorldwithNana

Be A Better Dev

~250K subscribers · AWS-specific, hands-on

Clear, practical AWS tutorials by an ex-AWS engineer. Excellent for understanding the vocabulary DevOps and serverless candidates actually use.

youtube.com/@BeABetterDev
03 AWS architecture & certification depth

Stephane Maarek

~250K subscribers · Top AWS cert instructor

One of the most respected AWS certification instructors. His free "AWS Certified Solutions Architect" overview videos explain core concepts cleanly.

youtube.com/@StephaneMaarek

AWS Architecture Center (official)

Official website · Reference blueprints

Real reference architectures with plain-language overviews. Skim a diagram before an architect screen to recognise the shape of a "good" answer.

aws.amazon.com/architecture
04 AI / ML & SageMaker / Bedrock

IBM Technology

~1M subscribers · Vendor-neutral whiteboard

Short whiteboard explainers ("What is an LLM?", "What is MLOps?"). Perfect for understanding the AI terminology ML candidates use, in plain language.

youtube.com/@IBMTechnology

Amazon SageMaker & Bedrock (official pages)

Official website · Authoritative overview

The official product pages open with a plain "what it is / what it's for" summary before any technical detail — enough to brief yourself before an ML screen.

aws.amazon.com/sagemaker
05 Cloud security & IAM

Amazon Web Services — security playlists

Official · ~750K subscribers · Authoritative

AWS's own short explainers on IAM, encryption, and zero trust. The IAM video alone demystifies the most common security term you'll hear on calls.

youtube.com/@amazonwebservices

IBM Technology — "Zero Trust" explainers

~1M subscribers · Vendor-neutral

Clear, jargon-light explanations of zero trust, encryption, and least privilege — the exact concepts that separate strong security candidates from weak ones.

youtube.com/@IBMTechnology
In plain English

You don't need to study — you need vocabulary recognition. Watch one short official "AWS in a Minute" for whatever stack the role touches the morning of a screen. When a candidate says "we ran it on EC2 behind a load balancer with a CI/CD pipeline," you'll know that's a normal, good sentence — not a wall of mystery. The free AWS Skill Builder — Cloud Practitioner Essentials path is the best structured non-technical primer that exists.

The screening playbook

How to screen each role

You're not testing for the perfect technical answer — you're listening for clear thinking, real experience, and honest uncertainty. Each role gives you questions, what strong / average / weak answers sound like, and the flags to watch for. Judge the shape of the answer, not the technical detail.

1

Solutions Architect & Cloud Engineer

"Walk me through a system you designed or built on AWS. Why those choices?"
StrongExplains the business problem first, then the choices, then the trade-offs (cost vs. speed vs. reliability). Mentions what they'd do differently. Concrete numbers.
AverageDescribes the technical setup correctly but can't explain why over alternatives, or only talks services, not outcomes.
WeakLists service names with no narrative, can't describe their own contribution, or claims everything was perfect with no trade-offs.
"A team says the AWS bill doubled this month. How would you investigate?"
StrongStructured: check Cost Explorer, find the biggest line items, look for idle or oversized resources, then prevention (budgets, alerts, right-sizing).
AverageKnows costs can be checked but is vague about the method or jumps straight to one fix.
WeakBlames the platform, has no method, or has clearly never owned cost.
Green flags
  • Leads with the business problem, not the services
  • Comfortable saying "it depends" and explaining on what
  • Mentions cost and reliability unprompted
  • Cert backed by real project stories
Red flags
  • Only buzzwords, no concrete project
  • Can't separate their work from the team's
  • Never mentions cost, security, or failure
  • Cert on paper but no hands-on stories
Junior

Solid fundamentals and a learning project or labs — not production scale.

Mid

Owns a real component end-to-end and explains trade-offs clearly.

Senior / Lead

Thinks in business outcomes, mentors others, has migration or scale stories.

2

Data Engineer

"Describe a data pipeline you built. Where did the data come from and where did it end up?"
StrongClear source-to-destination story, mentions data volume, handling of bad/late data, and who consumed the output. Redshift or an S3 data lake usually central.
AverageDescribes a pipeline but glosses over data quality, scale, or who used the result.
WeakOnly names services, can't describe data flow, or has only done tutorials.
"What do you do when the data arriving is messy or incomplete?"
StrongTalks about validation, handling missing values, alerting on anomalies, and not silently corrupting downstream reports.
AverageAcknowledges it's a problem, has a partial approach.
WeakHasn't thought about it, or assumes data is always clean.
Green flags
  • Treats data quality as a first-class concern
  • Knows who consumes the data and why
  • Comfortable with SQL and a language (usually Python)
  • Mentions cost/performance of queries
Red flags
  • Confuses data engineering with data science
  • No concept of data quality or monitoring
  • Tutorial-only, no real volume experience
  • Can't read or write basic SQL
Junior

Strong SQL and a clear understanding of what a pipeline is.

Mid

Built and maintained real pipelines with data-quality handling.

Senior

Designs the data platform, sets standards, optimises cost at scale.

3

Machine Learning & AI Engineer

"Tell me about a model or AI feature you put into production. What problem did it solve?"
StrongFrames the business problem, explains how success was measured, mentions getting it live and monitored — not just building it once.
AverageBuilt a model in a notebook but vague on deployment, monitoring, or real-world impact.
WeakOnly academic/tutorial work, can't connect to a business outcome, name-drops models without context.
"How do you know a deployed model is still working well a month later?"
StrongTalks about monitoring predictions, data/model drift, retraining, and feedback loops. This is the MLOps signal.
AverageKnows models can degrade but is fuzzy on how to catch it.
WeakAssumes a deployed model just keeps working forever.
Green flags
  • Cares about production & monitoring, not just accuracy
  • Connects models to business value
  • Honest about model limitations and failure
  • Current on generative AI / Bedrock / RAG if relevant
Red flags
  • Only Kaggle/coursework, never shipped
  • Treats accuracy as the only metric that matters
  • Overclaims AI as magic with no limits
  • No idea how a model behaves after launch
Junior

Solid ML basics, a project, and curiosity — production exposure a bonus.

Mid

Has shipped at least one model/feature and understands MLOps.

Senior

Owns ML systems end-to-end, sets practices, handles ambiguity.

4

DevOps Engineer & SRE

"Tell me about a time production broke. What happened and what did you do?"
StrongCalm, structured incident story: detection, diagnosis, fix, then a blameless post-mortem and a prevention change. Owns their part.
AverageDescribes an incident but light on prevention or learning afterward.
WeakBlames others, panicked narrative, or "nothing ever broke" (usually means little real ownership).
"What does a good deployment process look like to you?"
StrongAutomated, tested, repeatable, easy to roll back, low-risk. Mentions CI/CD and gradual rollout concepts.
AverageKnows automation is good but describes a partly manual process.
WeakManual deployments seen as normal; no concept of rollback.
Green flags
  • Blameless, learning-focused incident mindset
  • Automates by default; hates manual toil
  • Knows SLOs / error budgets if SRE-titled
  • Calm under pressure in the retelling
Red flags
  • Blames people, not systems
  • Manual everything, no automation instinct
  • No post-incident learning
  • Can't explain what they personally did
Junior

Understands CI/CD and containers conceptually; eager to automate.

Mid

Has owned pipelines and been on call for real systems.

Senior / SRE

Designs reliability strategy, leads incidents, defines SLOs.

5

Cloud Security Engineer

"Explain 'least privilege' to me like I'm not technical."
StrongClear analogy: give each person/app only the keys they need, nothing more, so a stolen key opens the least. Connects it to IAM in practice.
AverageCorrect definition but struggles to make it plain or give a real example.
WeakCan't explain it simply or confuses it with unrelated concepts.
"How would you approach securing a new AWS account from day one?"
StrongLayered: identity/access (IAM) first, encryption, network boundaries, logging/monitoring (CloudTrail/GuardDuty), and proving compliance. Security as ongoing.
AverageNames some controls but no coherent layered strategy.
WeakTreats security as a single tool or an afterthought.
Green flags
  • Explains complex ideas simply (key for this role)
  • Thinks in layers, not single fixes
  • Knows IAM deeply; mentions compliance frameworks
  • Attacker mindset balanced with pragmatism
Red flags
  • Security as one product or a checkbox
  • Can't simplify for non-technical stakeholders
  • No grasp of identity/access fundamentals
  • Fear-based, no practical trade-off sense
Junior

Solid IAM and encryption fundamentals; security curiosity.

Mid

Has hardened real environments and handled compliance work.

Senior

Owns security posture and strategy; advises leadership.

In plain English

The universal tell across every role: a strong candidate explains why and is comfortable saying "it depends" or "here's what I'd do differently." A weak candidate recites service names and claims everything always worked. You don't need to judge technical correctness — judge the clarity, the honesty about trade-offs, and whether they can tell their own contribution apart from the team's.

Decode the résumé

The jargon glossary

The terms you'll see most often on AWS résumés and in screening calls, in one line each.

AWS
Amazon Web Services — Amazon's cloud platform (servers, databases, AI). The thing this guide is about.
EC2
Elastic Compute Cloud — a rented virtual computer. "Spun up an EC2 instance" = started a rented machine.
S3
Simple Storage Service — AWS's giant online file storage. Files live in "buckets." The most famous AWS service.
Lambda
"Serverless" code that runs only when triggered, billed per use. No servers to manage.
RDS / Aurora
Managed traditional databases (rows and columns). Aurora is Amazon's faster cloud-built version.
DynamoDB
A super-fast, massive-scale database for instant responses — gaming, retail, mobile apps.
Container / Docker
A standardised box holding an app plus everything it needs to run anywhere. The unit modern apps ship in.
EKS / ECS
AWS services that run and manage lots of containers automatically. EKS is the managed Kubernetes version.
Serverless
You give code; AWS runs and scales it without you managing servers. Lambda is the headline example.
Redshift
AWS's data warehouse — answers questions across enormous datasets fast. Common on data résumés.
SageMaker
AWS's all-in-one platform to build, train, and run machine-learning models.
Bedrock
One service to access many top generative-AI models (including Anthropic's Claude) inside AWS.
IAM
Identity & Access Management — the rules for who is allowed to do what. The core of AWS security.
CI/CD
The automated pipeline that builds, tests, and ships software changes — the DevOps assembly line.
CloudFormation / Terraform / IaC
"Infrastructure as Code" — setting up cloud with a written script instead of by hand.
VPC
Virtual Private Cloud — a company's own private network inside AWS.
Well-Architected Framework
AWS's official checklist of best practices (security, cost, reliability, performance). Architects know it well.
SLO / SLI / Error budget
Reliability targets and measurements used by SRE teams to decide how much risk a release can take.
MLOps
The discipline of running ML models in production reliably — deploying, monitoring, retraining.
Migration
Moving existing systems (often old data centres or Oracle) onto AWS. A huge category of work.