Does API Gateway cache all responses regardless of HTTP status code?
The answer is no. API Gateway should only cache responses with status codes which are cacheable by default according to RFC 7231. Thus, only responses with the following status codes will be cached: 200, 203, 204, 206, 300, 301, 404, 405, 410, 414.
Read More »