AWS SDK NodeHttpHandler and timeout support?
Is there a way to set `requestTimeout` and `connectionTimeout` on AWS SDK clients? The standard way is to pass in config like this when instantiating the client:
```javascript
{
requestHandler: new NodeHttpHandler({
connectionTimeout: 2000,
requestTimeout: 2000,
})
}
```
but `@smithy/node-http-handler` doesn't seem to be available. Is there a workaround?
0 条评论