DOP-C02 is the AWS DevOps Engineer Professional certification, replacing the older DOP-C01 in March 2023 and stable through 2026. It is one of the harder AWS exams: 75 questions, 180 minutes, scenario-heavy, with multiple plausible answers per question. Below is the prep approach that maps to the live exam, including honest comparison of the practice exam vendors most candidates reach for.
Exam facts
- Cost: $300 USD via Pearson VUE or PSI
- Format: 75 questions (65 scored, 10 unscored), 180 minutes
- Passing score: 750/1000
- Validity: 3 years; renewal by re-sitting at $300 or by passing a higher specialty
- Recommended experience: 2+ years of AWS production work plus prior SAA-C03 or DVA-C02
Source: AWS Certification page and DOP-C02 official exam guide PDF, accessed May 2026.
Six domains and weightings
| Domain | Weight |
|---|---|
| Domain 1: SDLC Automation | 22% |
| Domain 2: Configuration Management and IaC | 17% |
| Domain 3: Resilient Cloud Solutions | 15% |
| Domain 4: Monitoring and Logging | 15% |
| Domain 5: Incident and Event Response | 14% |
| Domain 6: Security and Compliance | 17% |
Source: official DOP-C02 exam guide.
Time to prep from each baseline
From SAA-C03 (Solutions Architect Associate): 80-120 hours over 10-14 weeks. SAA gives you architecture breadth but limited depth on CI/CD pipelines, observability tooling, or incident response patterns.
From DVA-C02 (Developer Associate): 60-90 hours over 8-10 weeks. DVA covers more pipeline and Lambda content that maps to DOP-C02 directly. This is the easier path if you have a choice.
From SOA-C02 (SysOps Administrator): 50-70 hours over 6-8 weeks. The most direct ramp because SOA covers monitoring, automation, and operational topics that DOP-C02 builds on.
From scratch (no AWS associate cert): not recommended. Take SAA-C03 or DVA-C02 first. DOP-C02 expects associate-level fluency as the starting point.
Hardest sections (honest take)
Incident and event response (Domain 5)
This is the section most candidates underestimate. Questions test your ability to design automated response patterns: EventBridge rules triggering Lambda remediation, Systems Manager Automation runbooks for known failure modes, integration of Security Hub findings with response workflows, and CloudWatch alarms that trigger Auto Scaling or Step Functions.
The challenge: questions are scenario-based with multiple plausible response designs, and the "best" answer depends on subtle constraints (cost, latency, idempotency, blast radius). Practice with case studies, not flash cards.
CI/CD pipeline design with multi-account (Domain 1)
The exam frequently tests pipelines that span dev, staging, and production accounts using AWS Organizations and cross-account IAM. Topics include: CodePipeline cross-account deployments, CloudFormation StackSets, AWS CDK pipelines, manual approval gates, blue/green and canary patterns with CodeDeploy, and securing artifact stores across accounts.
The challenge: real-world experience with cross-account setups is the only reliable preparation. Reading documentation alone does not produce the mental model the exam tests.
Cross-region recovery (Domain 3)
Questions test trade-offs between RTO/RPO targets, replication patterns (DynamoDB Global Tables vs streams, S3 Cross-Region Replication, RDS read replicas, Aurora Global Database), and failover orchestration with Route 53 health checks plus Lambda or Step Functions.
The challenge: the exam expects you to know which AWS service produces which RPO and at what cost. Memorising service-by-service RTO/RPO characteristics is the only way to answer these questions confidently.
Practice exam vendor comparison (honest)
Stéphane Maarek (Udemy)
Practice exams: roughly 75 questions per set, 4 sets typical. Cost: $15-20 per set on Udemy (effectively always on sale). Style: question difficulty closely matches the real exam; explanations reference AWS documentation. Pros: well-maintained, accurate, the explanations teach you reasoning patterns. Cons: smaller question pool than Tutorials Dojo. Verdict: best single-vendor pick for DOP-C02, especially if you also took Maarek's video course.
Tutorials Dojo (Jon Bonso)
Practice exams: 5-6 sets of 75 questions, with timed mode and review mode. Cost: $15-25 per set on the Tutorials Dojo portal. Style: question difficulty is slightly above the real exam, which is useful for prep but produces a higher false-fail rate during practice. Pros: the largest question pool for DOP-C02, frequent updates, excellent review explanations. Cons: occasional questions are tougher than the real exam, which can dent confidence. Verdict: best for volume; combine with one Maarek set for variety.
Whizlabs
Practice exams: 5+ sets of 60-75 questions. Cost: $20-30 per set or subscription model. Style: question quality is more variable; some questions are well-aligned to the real exam, others have outdated or imprecise wording. Pros: cheap, large question volume. Cons: quality control is weaker than Maarek or Tutorials Dojo. Verdict: usable as supplementary practice but not as primary prep.
Skill Builder (AWS official)
Practice exams: one official practice exam plus a question set, both included in AWS Skill Builder Subscription ($29/month). Style: written by AWS, closest to actual exam structure. Pros: authoritative source, scenario style identical to real exam. Cons: lower question volume than third-party vendors. Verdict: include this as your final practice exam before booking the real one.
Recommended prep stack
- Video course: Stéphane Maarek's "Ultimate AWS Certified DevOps Engineer Professional" on Udemy. Around 30 hours. Watch at 1.5x.
- Official documentation: AWS exam guide PDF and the AWS Well-Architected Framework documentation. Read both at least twice.
- Practice exams: Tutorials Dojo (3 sets minimum) plus Maarek (2 sets) plus AWS Skill Builder official practice (1 set). Total cost: approximately $100-130.
- Hands-on labs: AWS Skill Builder labs or AWS Workshops (free at workshops.aws). Build a working multi-account CodePipeline as practice.
Salary impact
DOP-C02 holders in the US typically earn $160,000-$220,000 mid-level total comp and $200,000-$300,000 senior, per Glassdoor and Levels.fyi 2026 data. The cert correlates with a 10-15% salary uplift over uncertified DevOps engineers at the same experience level, per the Dice Tech Salary Report 2025-2026. The professional-tier signal is meaningful in interview pipelines for senior platform and SRE roles.
Hands-on warmup before exam day
# Verify you can spin up a CodePipeline locally for revision
aws codepipeline list-pipelines --output table
# Check CloudFormation drift for a stack
aws cloudformation detect-stack-drift --stack-name <stack>
# Quick health check on a multi-region replication setup
aws s3api get-bucket-replication --bucket <source-bucket>
# Confirm Systems Manager Automation runbooks for incident response
aws ssm list-documents --filters Key=DocumentType,Values=Automation --output table
If any of these commands return permission errors or unfamiliar output, spend a session resolving the gap before sitting the exam. Comfort at the AWS CLI is what differentiates candidates who pass cleanly from candidates who second-guess themselves under time pressure.