I have a requirement to integrate all the api urls in my django service with AWS gateway.
I tried importing the open api spec(swagger json) generated by drf-yasg/drf-spectacular into aws. But this seems create only the resources and methods for the api in the gateway.
I notice that, in order to setup the method request, integration request and integration response for all the methods automatically during import, the spec file needs to have aws gateway extensions mentioned for each method.
This seems to be a laborious task to write as there are too many resources and methods in my api.
So is there a way to customize the schema genertion with aws gateway extensions in it using drf-yasg/drf-spectacular module?
or perhaps is there any alternate method to solve this problem?