Amazon API Gateway 504 : Execution failed due to a network error communicating with endpoint could be caused by networking problems with integration. In VPC Link Private Integration and HTTP Integration such errors can be seen. COMMON REASONS for Amazon API Gateway 504 : Execution failed due to a network error communicating with endpoint 1.) … Continue reading Amazon API Gateway 504 : Execution failed due to a network error communicating with endpoint
Tag: Serverless
Enable API Gateway CloudWatch Logs
API Gateway Cloudwatch logs can help in troubleshooting issues related to request execution or client access to your API. This blog will help in understanding details to enable CloudWatch Logs for troubleshooting API Gateway REST API or WebSocket API Execution Logs vs Access Logs There are two types of API Gateway Cloudwatch logs: Execution logs … Continue reading Enable API Gateway CloudWatch Logs
Troubleshooting API Gateway Private API
This article focuses on Troubleshooting API Gateway Private API. Following are the common causes of restricted access to Private API Connectivity issues due to Amazon VPC security groups, NACL rules incorrectly configured.The invoke URL for the private APIPermission related issues due to API Gateway Resource and VPC Endpoint policy Before you start troubleshooting API Gateway … Continue reading Troubleshooting API Gateway Private API
500 Internal Server Error with Mock Integration
With Mock Integration Amazon API Gateway there are 2 common reasons for 500 Internal Server error. Check the mapping template in Integration Request and ensure that you are passing statusCode as an integer to the MOCK Integration endpoint. { "statusCode": <Integer_Status_code> } Note: Make sure that status code is passed as integer not string. Correct … Continue reading 500 Internal Server Error with Mock Integration
Amazon API Gateway Static IP Address
IP Address ranges provided by AWS is provided as a JSON file here. These address ranges keep on changing. The addresses listed for API_GATEWAY are egress only. For restrict/allow the traffic coming from API Gateway, Based on you are using a Regional or an Edge-Optimized endpoint you can whitelist entire IP address range of EC2 … Continue reading Amazon API Gateway Static IP Address
Amazon API Gateway 504: Execution failed due to a timeout error
As per the documentation, For Rest APIs 29 seconds Integration timeout limit is a hard limit which means it can’t be increased. For HTTP APIs the Integration timeout limit is 30 seconds LAMBDA INTEGRATION Workaround:You can asynchronously Invoke your backend to return a HTTP 202 status code which means that the request has been accepted … Continue reading Amazon API Gateway 504: Execution failed due to a timeout error
API Gateway: Create a REST API using AWS CLI
Let's get started with a brief description of API Gateway. Amazon API Gateway is an AWS service that can be used to create, publish, maintain, secure and monitor for REST and WebSocket APIs worrying about scaling and underlying infrastructure. What can API Gateway access as Back-end ? API Gateway can be integrated with one of … Continue reading API Gateway: Create a REST API using AWS CLI
AWS Lambda : Create your first function
AWS Lambda is one of the compute service provided by AWS. Let's get started by a brief intro and then some hands on lab to create a basic function in Python 3.7 runtime. What is AWS Lambda ? AWS Lambda is a compute service that allows to create a function in one of the supported … Continue reading AWS Lambda : Create your first function