© 2023 Hashnode
#aws-apigateway
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…
Starting to learn about Amazon Web Services (AWS) and Infrastructure as Code (IaC) is a daunting task. But as any engineer knows, to solve a complex problem, one must divide it into smaller tasks, so I have created a small project that simu…
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…
Introduction 👋 Password Generator REST API leverages AWS Lambda proxy integration and AWS API Gateway to generate a strong password (not less than 8 characters) on each API request. The API user may …
Introduction As a developer, you can build, deploy and manage serverless applications by using AWS services such as Lambda Functions and DynamoDB. In this blog post, I will show you how to create a si…
A while ago my team was looking to create a stub for an internal JSON HTTP based API. The to-be stubbed service was quite simple. The service exposed a REST API endpoint for listing resources of a spe…