Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 285 Bytes

README.NODE_HTTP_HANDLER.md

File metadata and controls

11 lines (10 loc) · 285 Bytes

@aws-sdk/node-http-handler

const { NodeHttpHandler } = require('@aws-sdk/node-http-handler');
const { Agent } = require('http');
const dynamodbClient = new DynamoDBClient({
  requestHandler: new NodeHttpHandler({
    httpAgent: new Agent({ keepAlive: false }),
  }),
});