( Draft) AWS Certified Solutions Architect - Associate (SAA-C03) - General & IAM

Posted by monikma, 04 March 2024.
Architecture AWS Cloud
Preparation for certification

Those are the notes I took during the Cloud Guru AWS Certified Solutions Architect - Associate (SAA-C03). Note that the course content changes as the AWS changes. The notes are from March-May 2024.

This section is about some general exam information as well as AWS IAM and AWS infrastructure.

Table of contents

Exam Guide

They put a lot of emphasis on how to pass the exam in the first place, not sure how I feel about this. In nutshell:

Now I will go topic by topic/service by service.

General knowledge

Global Infrastructure

(roughly knowing the numbers may matter)

Shared responsibility model

AWS Backup

Lambda

Elastic Beanstalk

ELB (Elastic Load Balancing)

ELB Health checks

Scaling

Auto Scaling Groups

Auto Scaling Policies

Scaling RDS

Scaling DynamoDB

Disaster Recovery Strategy

AWS Global Accelerator

IAM

Securing root account

Creating users

IAM policy document

It defines the permissions, e.g. full access (aka AdministratorAccess) looks like this:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": ["*"],
            "Resource": ["*"]
        }
    ]
}

Roles


Comments


Comments: