SOA-C03 / Printable Review
Night Before the Exam
A compressed review sheet for AWS Certified CloudOps Engineer - Associate. Use it to refresh decisions, not to learn the exam from scratch.
Domain Weights
| Domain | Weight | Study page |
|---|---|---|
| Monitoring, Logging, Analysis, Remediation, and Performance Optimization | 22% | Open Domain 1 |
| Reliability and Business Continuity | 22% | Open Domain 2 |
| Deployment, Provisioning, and Automation | 22% | Open Domain 3 |
| Security and Compliance | 16% | Open Domain 4 |
| Networking and Content Delivery | 18% | Open Domain 5 |
Essential Services
Critical Differences
- CloudWatch vs CloudTrail vs AWS Config
- Backup vs Replication
- Multi-AZ vs Read Replica
- Security Group vs Network ACL
- ALB vs NLB vs API Gateway
Security Concepts
- Roles over long-lived keys where possible.
- Encryption does not replace authorization.
- Resource policies and identity policies can both participate in access decisions.
- CloudTrail answers API activity; Config answers configuration state.
Cost Concepts
- Match capacity model to usage pattern.
- Watch storage access frequency and lifecycle.
- Data transfer and NAT can dominate architecture cost.
- Managed services reduce operations but are not automatically cheapest.
Decision Words
- Least operational overhead: Prefer managed and serverless services when they satisfy the requirement. Exceptions appear when the scenario needs host control, unsupported runtimes, specialized network behavior, or exact migration compatibility.
- Highly available: Identify the failure boundary. One instance is not HA. Multiple instances in one AZ help capacity but not AZ failure. Multi-AZ handles regional AZ faults. Multi-Region handles regional events but adds complexity and cost.
- Durable: Durability is about preserving data. Use replication, versioning, backups, point-in-time recovery, and tested restore plans. A durable backup does not guarantee a low RTO.
- Decouple the application: Use SQS for buffering work, SNS for fanout, EventBridge for event routing, and Step Functions for visible workflow state. Add retries, DLQs, and idempotent consumers.
- Least privilege: Prefer roles and temporary credentials, scope actions/resources/conditions, watch explicit denies, and remember that resource policies may also be required.
- Most cost-effective: Read usage pattern, duration, access frequency, scaling behavior, data transfer, and operations. Cheapest unit price is not always lowest total cost.
- Lowest latency: Move content or compute closer to users, cache aggressively, choose the right database access pattern, and avoid unnecessary cross-Region or NAT paths.
- Private connectivity: Use private subnets, VPC endpoints, PrivateLink, VPN, Direct Connect, Transit Gateway, and tight DNS/routing design instead of public exposure.
- Minimum downtime: Separate deployment downtime, failure recovery, and data restore time. Use blue/green, canary, Multi-AZ, replication, and tested rollback where appropriate.
- Automatic remediation: Pair a reliable signal with EventBridge or CloudWatch, a scoped Systems Manager Automation or Lambda action, and a validation step.
- RPO and RTO: RPO is acceptable data loss. RTO is acceptable recovery time. Backups, replication, failover, and architecture all affect them differently.
- Ordered processing: Use FIFO queues or ordered stream partition keys where ordering really matters. Otherwise preserve throughput and idempotency with standard queues/events.
- Encryption and key management: Encryption protects data confidentiality. KMS key policies and IAM decide who can use keys. Authorization still needs separate design.
- Centralized governance: Use Organizations, SCPs, delegated admin, organization trails, Config aggregators, Security Hub, and account vending for multi-account control.
Common Traps
- Confusing CloudWatch metrics with CloudTrail API history.
- Changing broad network rules before checking route tables, NACLs, security groups, and DNS.
- Treating backup success as recovery validation.
- Missing Systems Manager prerequisites such as instance profiles, agent status, and network access.
Worth Memorizing
- Monitoring, Logging, Analysis, Remediation, and Performance Optimization: 22%
- Reliability and Business Continuity: 22%
- Deployment, Provisioning, and Automation: 22%
- Security and Compliance: 16%
- Networking and Content Delivery: 18%
Understand, Do Not Memorize
- Whether you can observe, diagnose, remediate, and automate AWS environments without making outages worse.
- Whether you understand backup, recovery, high availability, scaling, and business continuity choices.
- Whether you can provision and patch resources consistently with infrastructure as code and Systems Manager.
- Whether you can troubleshoot identity, network, DNS, logging, and compliance symptoms.
DJames617