Shing Lyu

How to learn an AWS service quickly

By Shing Lyu    

Disclaimer: This content reflects my personal opinions, not those of any organizations I am or have been affiliated with. Code samples are provided for illustration purposes only, use with caution and test thoroughly before deployment.

In my day job, I have to consult customers on AWS services and design architectures on AWS. That means I have to have a basic understanding of almost every AWS service and be ready to dive deep into any of them on short notice. For that, I have a method for learning an AWS service in the most efficient way possible.

  1. Read the product page.
  2. Read the product FAQ.
  3. Read the concept section(s) of the documentation.
  4. Ask yourself key questions about this service.
  5. Watch YouTube videos.
  6. Follow a hands-on workshop.
  7. Dive deeper.

Let’s assume that you need to learn AWS Lambda quickly, here is how you would do it:

Read the product page

Search for the product page of AWS lambda: https://aws.amazon.com/lambda/. These pages usually summarize the unique selling points and features pretty well. They usually also list some use cases and customer cases.

product page

Read the FAQ

The product page usually stays relatively high-level and focuses more on the business value. If you want to learn more about the technical details, read the FAQ page: https://aws.amazon.com/lambda/faqs/. Sometimes the FAQ will also compare services that are similar. You can find the list of FAQs here.

FAQ

Read the concept section(s) of the documentation.

Once you have a basic understanding of why you need the service and how it works. You should try to understand the key concepts of the service. For example, for AWS Lambda, you might want to know the following:

Usually, you’ll find this in the Concepts section of the Developer Guide. You can find the developer guide under the Resources tab on the product page.

resources concepts

Search for section titles like “What is [service name]”, “Concepts”, or “Architecture”. These sections usually give you a better idea about the key terminologies and architecture to help you understand other materials faster.

Some services that are end-user-facing might have an Administration Guide and a User Guide instead, for example Amazon WorkSpaces. Assuming that you are developing on AWS, the administration guides are usually more relevant.

Ask yourself key questions about this service

The documentation (e.g. developer guide, administration guide) is usually very long and goes into very trivial details on how to click a certain button on the console, so reading it cover-to-cover is not the most efficient way. Instead, ask yourself questions and try to find the answers in the documentation. Some of the key questions you should consider are:

Watch YouTube videos

There are talks about a particular AWS service on YouTube. They are recordings from AWS re:Invent, AWS Summit or other events. These talks are usually 30 minutes to an hour long and give a good overview of the service. Most of the time, they also include a short demo and go into the internal architecture of the system. You can find links to these videos in the Resources tab of the product page. For example for AWS Lambda, you can see a Technical talks section on that page. Or just search on YouTube and look for the one published by official AWS accounts.

Once you finish the introductory talks, look for video titles like “deep dive”, “best practices”, or “patterns”. These videos will give you more insight into how the service is designed and give you best practices on scaling, resiliency, cost optimization, and security.

Follow a hands-on workshop

Once you have the theoretical knowledge, it’s time to get your hands dirty. You can find a hands-on workshop at https://workshops.aws/. Sometimes there will be public events in which an instructor will walk you through the workshops. But most of them can be run as self-paced workshops. Following the step-by-step hands-on workshop will help you learn the service by actually using it. For example, you can find several workshops on AWS Lambda here. workshops

Dive deeper

Once you have done all the above, you should already have a good understanding of the service. There are many more ways you can dive deep into the service, and most of them are listed on the Resources page. These resources include, but are not limited to:

By following this method, you should be able to learn an AWS quickly. Happy learning!

Want to learn Rust? Check out my book: