We announced the upcoming end-of-support for AWS SDK for JavaScript v2.
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Class: AWS.FileSystemCredentials

Inherits:
AWS.Credentials show all
Defined in:
lib/credentials/file_system_credentials.js

Overview

Note:

This feature is not supported in the browser environment of the SDK.

Represents credentials from a JSON file on disk. If the credentials expire, the SDK can refresh() the credentials from the file.

The format of the file should be similar to the options passed to AWS.Config:

{accessKeyId: 'akid', secretAccessKey: 'secret', sessionToken: 'optional'}

Examples:

Loading credentials from disk

var creds = new AWS.FileSystemCredentials('./configuration.json');
creds.accessKeyId == 'AKID'

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Credentials

expired, expireTime, accessKeyId, secretAccessKey, sessionToken, expiryWindow

Method Summary collapse

Methods inherited from AWS.Credentials

needsRefresh, get, getPromise, refreshPromise

Constructor Details

new AWS.FileSystemCredentials(filename) ⇒ void

Creates a new FileSystemCredentials object from a filename

Parameters:

  • filename (String)

    the path on disk to the JSON file to load.

Property Details

filenameString (readonly)

Returns the path to the JSON file on disk containing the credentials.

Returns:

  • (String)

    the path to the JSON file on disk containing the credentials.

Method Details

refresh(callback) ⇒ void

Loads the credentials from the filename on disk.

Callback (callback):

  • function(err) { ... }

    Called after the JSON file on disk is read and parsed. When this callback is called with no error, it means that the credentials information has been loaded into the object (as the accessKeyId, secretAccessKey, and sessionToken properties).

    Parameters:

    • err (Error)

      if an error occurred, this value will be filled

See Also:

  • AWS.FileSystemCredentials.get