Settings for Disabling Cache

Hi,

I’m wondering how to fully disable cache on my endpoint?

I have the headers set in yaml as follows:

response:
            headers:
              Cache-Control: "'max-age=0'"

I also have this set:

ApiGatewayStage:
  Type: "AWS::ApiGateway::Stage"
  Properties:
    MethodSettings:
      - ResourcePath: "/*"
        HttpMethod: "*"
        CachingEnabled: false

I’m really at a loss for how to completely disable caching. Thanks for any pointers!