Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 737 Bytes

aws-api-gateway.md

File metadata and controls

13 lines (7 loc) · 737 Bytes

AWS API Gateway

API Gateway makes it easy to version APIs, monitor events (like usage of a certain API method), scale the API independently, roll out APIs for different stages and create RESTful services.

Serverless and API Gateway

The Serverless framework uses API Gateway to help setup routes to Lambda functions. You can e.g. perform a GET request and fetch all related data which is then available in the related Lambda function. The API Gateway is the trigger which causes the Lambda function to run.

Introducing Amazon API Gateway

References

Medium - aws-fundamentals-what-is-api-gateway