The AWS SDK for JavaScript V3 API Reference Guide describes in detail all the API operations for the AWS SDK for JavaScript version 3 (V3).
Enforce a minimum TLS version
To add increased security when communicating with AWS services, configure the AWS SDK for JavaScript to use TLS 1.2 or later.
Important
The AWS SDK for JavaScript v3 automatically negotiates the highest level TLS version supported by a given AWS Service endpoint. You can optionally enforce a minimum TLS version required by your application, such as TLS 1.2 or 1.3, but please note that TLS 1.3 is not supported by some AWS Service endpoints, so some calls may fail if you enforce TLS 1.3.
Transport Layer Security (TLS) is a protocol used by web browsers and other applications to ensure the privacy and integrity of data exchanged over a network.
Verify and enforce TLS in Node.js
When you use the AWS SDK for JavaScript with Node.js, the underlying Node.js security layer is used to set the TLS version.
Node.js 12.0.0 and later use a minimum version of OpenSSL 1.1.1b, which supports TLS 1.3. The AWS SDK for JavaScript v3 defaults to use TLS 1.3 when available, but defaults to a lower version if required.
Verify the version of OpenSSL and TLS
To get the version of OpenSSL used by Node.js on your computer, run the following command.
node -p process.versions
The version of OpenSSL in the list is the version used by Node.js, as shown in the following example.
openssl: '1.1.1b'
To get the version of TLS used by Node.js on your computer, start the Node shell and run the following commands, in order.
>
var tls = require("tls");>
var tlsSocket = new tls.TLSSocket();>
tlsSocket.getProtocol();
The last command outputs the TLS version, as shown in the following example.
'TLSv1.3'
Node.js defaults to use this version of TLS, and tries to negotiate another version of TLS if a call is not successful.
Enforce a minimum version of TLS
Node.js negotiates a version of TLS when a call fails. You can enforce the minimum allowable TLS version during this negotiation, either when running a script from the command line or per request in your JavaScript code.
To specify the minimum TLS version from the command line, you must use Node.js
version 11.0.0 or later. To install a specific Node.js version, first install Node
Version Manager (nvm) using the steps found at Node version manager
installing and updating
nvm install 11 nvm use 11
Verify and enforce TLS in a browser script
When you use the SDK for JavaScript in a browser script, browser settings control the version of TLS that is used. The version of TLS used by the browser cannot be discovered or set by script and must be configured by the user. To verify and enforce the version of TLS used in a browser script, refer to the instructions for your specific browser.