SigV4Authenticator.prototype.initialResponse = function()

in lib/sigv4-auth-provider.js [134:139]


SigV4Authenticator.prototype.initialResponse = function (callback) {
  // we need to tell the system we want sigV4.
  const responseBuffer = Buffer.from("SigV4\0\0", 'utf8');
  callback(null, responseBuffer);

};