Skip to main content

How to prepare for AWS SAA Certification


Hi Folks,

πŸ™ Namaste and Welcome to my blog πŸ™


Hope this finds you safe and healthy! 

Here I will explain how to prepare for AWS SAA Certification.

If you have started preparation for AWS Solution Architect Associate Exam, please go through all below mentioned link. When you will finish them you have completed the 70 % of course.

1) https://aws.amazon.com/certification/certification-prep/
2) https://aws.amazon.com/whitepapers/
3) https://aws.amazon.com/training/course-descriptions/architect/
4) https://aws.amazon.com/training/self-paced-labs/


If you want real environment for practice then follow below URL:-

https://qwiklabs.com/
1) Create account
2) Start taking lab
3) Practice all free lab.

-> AWS Certified Solutions Architect certification exam.
-The exam is 55 multiple choice questions with a time limit of 80 minutes
-And a minimum passing score of 65%.
-Multiple choice and multiple answer questions
-Available in English, Japanese, Simplified Chinese, Traditional Chinese, Korean, German, Russian, Spanish, and Brazilian Portuguese
-Practice Exam Registration fee is USD 20









CheersπŸ‘

Vik

Sr. Cloud-DevOps Engineer




Comments

Popular posts from this blog

Kubernetes common issues with scenarios and solutions πŸ“˜ Scenario #1: Zombie Pods Causing NodeDrain to Hang Category: Cluster Management Environment: K8s v1.23, On-prem bare metal, Systemd cgroups  Scenario Summary: Node drain stuck indefinitely due to unresponsive terminating pod. What Happened: A pod with a custom finalizer never completed termination, blocking kubectl drain. Even after the pod was marked for deletion, the API server kept waiting because the finalizer wasn’t removed. Diagnosis Steps:  • Checked kubectl get pods --all-namespaces -o wide to find lingering pods.  • Found pod stuck in Terminating state for over 20 minutes.  • Used kubectl describe pod to identify the presence of a custom finalizer.  • Investigated controller logs managing the finalizer – the controller had crashed. Root Cause: Finalizer logic was never executed because its controller was down, leaving the pod undeletable. Fix/Workaround: kubectl patch pod -p '{"metadata":{"fina...
  How to Configure AWS service API Gateway Hi Folks,  πŸ™  Namaste  and Welcome to my blog  πŸ™ Hope this finds you safe and healthy!  Today I will explain " How to Configure AWS service API Gateway " . Below are the steps which I will take during this session.  1) Briefing about API Gateway  2) Costing  3) Create API Gateway  4) Configuration  5) Code location on web server  1) Briefing about API Gateway Amazon API Gateway is an AWS service for creating, publishing, maintaining, monitoring, and securing REST, HTTP, and WebSocket APIs at any scale. API developers can create APIs that access AWS or other web services, as well as data stored in the AWS Cloud. As an API Gateway API developer, you can create APIs for use in your own client applications. Or you can make your APIs available to third-party app developers. 2)  Costing A) Free Tier The Amazon API Gateway free tier includes one million API calls received for R...