Raul NaupariProblog.raulnq.com·Oct 12, 2024How to Use WebSockets with Amazon API GatewayWebSockets is a communication protocol that enables full-duplex data exchange over a single TCP connection, facilitating real-time interactions between clients and servers. Amazon API Gateway supports this protocol through the WebSockets API, relievi...Discuss·38 reads.NET
Raul NaupariProblog.raulnq.com·Sep 29, 2024How to Use Non-Proxy Integration with Amazon API Gateway: OpenAPI SpecificationIn the article How to Use Non-Proxy Integration with Amazon API Gateway, we define resources such as AWS::ApiGateway::RestApi, AWS::ApiGateway::Resource, AWS::Lambda::Permission, and AWS::ApiGateway::Method in our AWS SAM template file instead of AWS...DiscussAWS
Tanishka Marrottcloud-design-diaries.hashnode.dev·Sep 23, 2024The Multi-Tier Architectural Pattern. Making complex things *simple*I’ve been in the cloud for quite a few years now; and among the most widely adopted and trusted approaches is the multi-tier design pattern. The reason for this? It elegantly divides an application into its core components, making it easier to manage...Discuss·2 likesMulti-Tier Architecture
Raul NaupariProblog.raulnq.com·Sep 7, 2024How to Validate Requests in Amazon API GatewayIn the post, Understanding Amazon API Gateway: Methods and Integrations, we discussed how the method request section manages authorization, API KEY checks, and request validation. We've already covered authorization in articles like How to Secure AWS...Discuss·44 readsAWS
Raul NaupariProblog.raulnq.com·Sep 1, 2024Understanding Amazon API Gateway: Methods and IntegrationsAmazon API Gateway is an AWS service for creating, publishing, maintaining, monitoring, and securing REST, HTTP, and WebSocket APIs at any scale. Working with Amazon API Gateway can be overwhelming, especially at the beginning when many concepts are...DiscussAWS
Arish Ahmadblog.arishahmad.in·Aug 10, 2024Accessing S3 Bucket Images with APIIntroduction This blog will guide you through setting up an API to access images stored in Amazon S3. We’ll leverage AWS Lambda to create a serverless function that handles image retrieval, and API Gateway to expose this functionality as a RESTful AP...Discuss·40 readsAWS Project Chronicles: From Novice to ExpertAWS
Raul NaupariProblog.raulnq.com·Aug 9, 2024How to Throttle Requests in Amazon API GatewayThrottling requests in an API is a common practice for several reasons, mainly related to the following: Performance: Throttling safeguards backend services from being overwhelmed by excessive requests. Without it, a sudden traffic surge could overl...Discuss·60 readsAWS
Linet Kendislina.hashnode.dev·Jul 31, 2024AWS Cloud Resume API ChallengeArchitecture of the Mini-application Step 1: Create a DynamoDB Table Go to the AWS Management Console. Navigate to DynamoDB and create a new table. Table name: Resumes Primary key: id (String) Step 2: Add Resume Data to DynamoDB Create a Pyt...Discuss·13 likes·68 readsCloudlambda
Wilson KOMLANblog.wilsonkomlan.com·Jul 14, 2024Step-by-Step Guide to Using Lambda Proxy Integrations in Amazon API GatewayIn this post, we will create a REST API endpoint with GET and POST methods for the previous backend using Amazon API Gateway's HTTP API. Prerequisites All you need is just an AWS account: no worries, if you are new to AWS, AWS offers you a 12-month f...Discuss·30 readsHow to Set Up a Secure and Cost-Effective Serverless Backend Using AWSAPIs
ILYAS RUFAIblog.rufilboss.me·Jul 13, 2024Serverless Architectures with AWS Lambda and API GatewayIntroduction Serverless architecture is a paradigm where you build and run applications without having to manage the underlying infrastructure. AWS Lambda and API Gateway are core services in Amazon Web Services (AWS) that enable you to create server...Discuss·10 likesSystem DesignAWS