Command Palette

Search for a command to run...

My Path to 3 AWS Certs in 6 Months

SB
Sachin Babu
Feb 28, 20255 min read

AWS certifications get a lot of eye-rolls in certain circles — "just learn by doing." Fair point. But structured certification paths forced me to understand services I'd have happily ignored: VPC internals, IAM policy evaluation logic, S3 replication nuances. That depth showed up immediately in production.

Here's exactly how I approached three certs in six months while working full-time.

The Order Matters

Start with Cloud Practitioner (CLF-C02). Treat it as a vocabulary sprint, not a technical deep-dive. Two weeks of evenings is plenty if you already ship code. The goal is to stop confusing ECS with EKS and to understand the shared responsibility model before it matters.

Developer Associate (DVA-C02) is where it gets interesting. This cert is sharply focused on services a developer actually touches: Lambda, API Gateway, DynamoDB, SQS/SNS, Cognito, CodePipeline. The exam rewards hands-on experience. Build the lab. Deploy a Lambda behind an API Gateway, wire it to DynamoDB, and add Cognito auth. The muscle memory locks in the details.

Solutions Architect Associate (SAA-C03) is the breadth cert. You'll need to make architecture trade-off decisions under time pressure. High availability vs cost, single-region vs multi-region, Aurora vs RDS vs DynamoDB. The AWS Well-Architected Framework pillars (Reliability, Security, Performance, Cost, Sustainability) are the lens for every question.

Study Stack

  • Stephane Maarek's Udemy courses — still the gold standard. Not cheap, but catch them on sale.
  • AWS free tier — spin it up. Don't just watch videos.
  • Tutorials Dojo practice exams — do these timed in the last week before each exam. The explanations for wrong answers are as valuable as the questions.
  • AWS FAQ pages — tedious but the exam literally quotes them.
  • The Traps

    IAM policy evaluation is where smart engineers stumble. The logic is: explicit deny > explicit allow > implicit deny. Write out the policy interaction by hand for a few scenarios until it's obvious.

    DynamoDB access patterns — the exam tests your instinct for when to use GSIs vs LSIs vs table design changes to achieve a query pattern. Read the DynamoDB design docs, not just the service overview.

    Costs — the exam cares about this more than developers expect. Know when spot instances beat reserved, when Savings Plans beat Reserved Instances, and what triggers NAT Gateway costs.

    Worth It?

    The certs aren't just résumé lines. The certification process gave me a mental model for AWS that I now apply automatically when architecting new features. The six months of study compressed what might have been two years of incidental learning.

    All postsEnd of article

    Keep Reading

    All Posts →