AWS API-Gateway Caching settings not visible in Console

Viewed 415

following the AWS docs for enabling Caching for APIs in API-Gateway - I can not find any settings for Caching in there.

It seems that I have an old version of the Console, maybe?

Here is what I see: enter image description here

1 Answers

You are using HTTP API, not REST API. Caching is not aviabaile for HTTP API (docs):

enter image description here

Subsequently, if you want to develop API with caches, you need to use REST API.

Related