© 2023 Hashnode
#aws-apigateway
Introduction In today's digital era, APIs (Application Programming Interfaces) have become the backbone of modern software development and enable seamless integration and communication between differe…
Here are the top 10 AWS API Gateway interview questions and their answers: Q: What is AWS API Gateway? A: AWS API Gateway is a fully managed service that allows developers to create, publish, and manage APIs at any scale. It acts as a fron…
Intro I have added a token-based Lambda Authorizer for all my backend services deployed on API Gateway. I wanted the user to be signed out if the authorizer responds with a 401 (Unauthorized) or 403 (Access Denied) error. This is how my cod…
Suppose we develop an application where a user can edit his pictures. App Name- PhotoEditor The user can upload the picture -> editor will edit the photo -> user can download the edited photo. We can …
AWS API Gateway is a fully managed service that allows developers to create, publish, maintain, monitor, and secure APIs at any scale. It acts as a front door for applications to access data, business…
Introduction In the last two tutorials, we built a Lambda function and an API Gateway to interact with it. In this tutorial, we will build an app that can use this API. It will use React.js as our bas…
Introduction Now we reach what is in my opinion the most complex and tedious part of our Rest API as there is so much configuration to do. In the last post, we covered how to build and set up a Lambda…
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 …
Based on this AWS tutorial "Create an Audio Transcript with Amazon Transcribe" we will create all the processes using AWS API Gateway, Lambda, Amazon Transcribe and S3, all with Terraform. API Gateway…
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…