dc dotCreds
Reference guide

AWS SAA-C03 Course Notes

Study AWS SAA-C03 section notes, then jump straight into the guided course or related practice questions without losing your place.

Continue Course Start Practice
Checking access

Checking Pro access...

Looking for your active Pro access before showing Course Notes. This usually takes just a moment.

Course Notes preview

Unlock Pro for the full per-exam reference guide.

Preview one piece from each section. Pro includes every Course Notes section, summary, key point, common mistake, exam tip, related-question review, and PDF export.

Includes full Course Mode and Course Notes.

Section 1 Architectural Foundations Preview
More in this section
  • Full summary in Pro version
  • 14 more key points in Pro version
  • 3 more common mistakes in Pro version
  • 3 more exam tips in Pro version
  • 45 more related questions in Pro version

Summary

SAA-C03 security scenarios usually start with identity boundaries. IAM roles are preferred when AWS services, applications, or users need permissions without long-term access keys. AWS STS issues temporary credentials when a role is assumed, and cross-account roles are the clean pattern for granting access into another AWS account. IAM Identity Center and federation fit workforce sign-in scenarios where users authenticate through an external identity provider and receive role-based AWS access.

Key Points

  • IAM Role: An AWS identity with permissions that can be assumed by a trusted service, user, application, or account instead of using long-term keys.

Common Mistakes

  • Creating IAM users with long-term keys when the scenario asks for temporary delegated access through IAM roles and STS.

Exam Tips

  • Use IAM roles and STS for temporary access, especially across accounts.
Section 2 Resilience & DR Preview
More in this section
  • Full summary in Pro version
  • 13 more key points in Pro version
  • 3 more common mistakes in Pro version
  • 3 more exam tips in Pro version
  • 19 more related questions in Pro version

Summary

Resilient designs on SAA-C03 often use events and queues to absorb failure. SNS is selected for fanout notifications to multiple subscribers, while SQS is selected when producers and consumers need decoupling, buffering, and retry isolation. Lambda fits event processing when work can run as stateless functions triggered by queues, notifications, streams, or service events.

Key Points

  • Amazon SNS: A pub/sub messaging service selected when one event must fan out to multiple subscribers or notification targets.

Common Mistakes

  • Choosing SQS FIFO for every queue even when the requirement values maximum throughput over strict ordering.

Exam Tips

  • SNS fans out notifications; SQS buffers and decouples; Lambda processes events.
Section 3 Performance Tuning Preview
More in this section
  • Full summary in Pro version
  • 14 more key points in Pro version
  • 3 more common mistakes in Pro version
  • 3 more exam tips in Pro version
  • 50 more related questions in Pro version

Summary

Performance questions often begin with storage latency, throughput, and access pattern. Use EBS gp3 when general-purpose block storage needs predictable baseline performance with separately configurable IOPS and throughput. Use io1 or io2 when a database or critical workload needs sustained high IOPS and low latency. EFS fits shared Linux file access across instances, FSx fits managed high-performance file systems such as Windows file shares, and Instance Store fits temporary local scratch data rather than durable storage.

Key Points

  • EBS gp3: A general-purpose SSD volume type selected when cost-effective block storage needs configurable IOPS and throughput.

Common Mistakes

  • Using read replicas to solve write bottlenecks when they mainly scale read traffic.

Exam Tips

  • Match the bottleneck: storage IOPS, read scaling, cache latency, edge delivery, streaming ingestion, or batch processing.
Section 4 Cost Management Preview
More in this section
  • Full summary in Pro version
  • 13 more key points in Pro version
  • 3 more common mistakes in Pro version
  • 3 more exam tips in Pro version
  • 32 more related questions in Pro version

Summary

Cost optimization on SAA-C03 is usually a design choice, not a billing report. S3 Glacier storage classes reduce long-term storage cost when retrieval can be slower, with Glacier Deep Archive fitting rarely accessed compliance or archive data. S3 Intelligent-Tiering fits data with unknown or changing access patterns, and lifecycle policies move or expire objects based on age, prefix, tags, or version state.

Key Points

  • S3 Glacier: An S3 archive storage family selected when data is rarely accessed and lower storage cost matters more than instant retrieval.

Common Mistakes

  • Choosing Glacier Deep Archive for data that needs immediate retrieval.

Exam Tips

  • Lifecycle policies transition or expire data; Intelligent-Tiering handles changing access patterns.