You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello there,
I would like to change the timeout for API Gateway integration.
In serverless, I can change this by setting the timeoutInMillis property in the apiGateway configuration.
provider:
apiGateway:
timeoutInMillis: 10000 # Default timeout of 10 seconds for all endpoints
functions:
fetch:
handler: handler.hello
events:
- http:
path: /posts/{id}
method: get
create:
handler: handler.bye
events:
- http:
path: /posts
method: post
timeoutInMillis: 40000 #
But it seems this configuration doesn't work with Step Functions.
In Step Functions, I tried to change like this but it didn't work.
Hello there,
I would like to change the timeout for API Gateway integration.
In
serverless
, I can change this by setting thetimeoutInMillis
property in theapiGateway
configuration.But it seems this configuration doesn't work with Step Functions.
In Step Functions, I tried to change like this but it didn't work.
Could you please help me on this? Of course, I can change it directly on the API Gateway console. But it’s not a best practice.
Thanks a lot
The text was updated successfully, but these errors were encountered: