eolas/zk/API_Gateway.md

21 lines
579 B
Markdown
Raw Normal View History

2023-04-10 19:36:55 +01:00
---
categories:
- DevOps
- Backend
2023-08-31 20:39:08 +01:00
tags: [AWS, APIs]
2023-04-10 19:36:55 +01:00
---
# AWS API Gateway
We can use Gateway as the front-door to our application. It will create an
[HTTP](/Databases/REST/HTTP_request_types.md) endpoint that you can call from a
client. In response to a client request you can then call a
[lambda function](/DevOps/AWS/AWS_Lambda/Lambda_handler_function.md) that
executes a backend process.
2023-04-10 19:36:55 +01:00
2024-02-16 16:14:01 +00:00
![](/img/gateway-services.png)
2023-04-10 19:36:55 +01:00
See
[using API Gateway as Lambda trigger](/DevOps/AWS/AWS_Lambda/Practical_walkthrough_Lambda_creation_within_AWS.md)
for a basic example of usage.