© 2023 Hashnode
#apigateway
API Gateway: the ultimate middleman for all your proxying needs was initially published on Friday January 06 2023 on the Tech Dev Blog. For the latest up-to-date content, fresh out of the oven, visit …
When creating a lambda rest API using CDK, by default it creates a stage named prod import * as cdk from "aws-cdk-lib"; import * as apigw from "aws-cdk-lib/aws-apigateway"; export class ApiGatewayDem…
AWS offers an easy way to work with web sockets through the WebSockets API in API Gateway. This article is going to be a short walkthrough on how to get started with WebSocket APIs. Setup This is arti…
An API gateway is a server that sits between your backend services and your users. It provides an abstraction layer that helps you manage the communication between clients and your services. API gateways are a single point of entry into a m…
There are a lot of products offering you an all-in-one managed authentication & authorization solution, like Auth0. But what if you want to manage everything on your own and don’t rely on third partie…
Everything fails, accept it!🤦 In a distributed system, a client service usually calls other services to retrieve data and there is the possibility that one of those services can fail due to some unex…
Amazon Elastic Container Service (ECS) is a service that allows you to run and manage clusters of Docker containers on AWS infrastructure. It’s fully managed by Amazon. Docker Compose is a most-wante…
Introduction In this walkthrough, we are going to look at some of the Apache APISIX API Gateway built-in plugins for securing your Spring Boot REST APIs and demonstrate how to effectively use them. Yo…