Replies: 1 comment
-
Hi @qhenkart, thanks for opening this discussion. When instancing an AWS client you have the option to pass a custom http handler to the client, the parameter is requestHandler. Small example below:
Here you can find the implementation of node http handler, so you can use it as reference and guidance. Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an AWS transcription service. The FE starts the data stream to our API so we can track and limit the usage, our API passes the response to AWS. On the response, our API modifies the response data to a simpler data structure, stores it in the database and passes it back to the FE.
The problem is expecting a certain response from AWS, and will not accept a custom response. How can I replace this layer? I've been messing around with the middleware stack but the documentation around existing middleware and how to replace/remove it is really lacking
Beta Was this translation helpful? Give feedback.
All reactions