Book Image

AWS for Solutions Architects

By : Alberto Artasanchez
3 (1)
Book Image

AWS for Solutions Architects

3 (1)
By: Alberto Artasanchez

Overview of this book

One of the most popular cloud platforms in the world, Amazon Web Services (AWS) offers hundreds of services with thousands of features to help you build scalable cloud solutions; however, it can be overwhelming to navigate the vast number of services and decide which ones best suit your requirements. Whether you are an application architect, enterprise architect, developer, or operations engineer, this book will take you through AWS architectural patterns and guide you in selecting the most appropriate services for your projects. AWS for Solutions Architects is a comprehensive guide that covers the essential concepts that you need to know for designing well-architected AWS solutions that solve the challenges organizations face daily. You'll get to grips with AWS architectural principles and patterns by implementing best practices and recommended techniques for real-world use cases. The book will show you how to enhance operational efficiency, security, reliability, performance, and cost-effectiveness using real-world examples. By the end of this AWS book, you'll have gained a clear understanding of how to design AWS architectures using the most appropriate services to meet your organization's technological and business requirements.
Table of Contents (20 chapters)
1
Section 1: Exploring AWS
4
Section 2: AWS Service Offerings and Use Cases
11
Section 3: Applying Architectural Patterns and Reference Architectures
17
Section 4: Hands-On Labs

Covering Amazon API Gateway

We have already discussed AWS Lambda at length throughout the book. AWS Lambda functions can be called in a variety of ways including the following:

  • Directly from the Lambda console in the AWS console
  • Using the Lambda API
  • Invoking AWS Lambda functions with the AWS SDK
  • Invoking AWS Lambda functions with the AWS CLI
  • Using AWS Toolkits
  • Configuring other AWS services to call AWS Lambda functions
  • Configuring AWS Lambda to read data from a stream or items from a queue and invoke an AWS Lambda function depending on the contents

But another powerful way to invoke AWS Lambda is by using Amazon API Gateway. Invoking AWS Lambda in this way is a popular method to create publicly available and private RESTful API services.

The invocation of an AWS Lambda function can be done synchronously or asynchronously. When the function is invoked synchronously, the response from the function can be retrieved in the same code fragment that...