Skip to content
SaltwaterC edited this page Jan 14, 2012 · 4 revisions

About

This is the API client loader. Instead of having a bunch of client instances loaded by default, aws2js loads on demand the clients with the default configuration.

Reference

aws.load(client, [accessKeyId], [secretAccessKey])
  • 'client' - the supported API client (eg: ec2, rds, s3, etc.). This must be a proper value. Otherwise, the client throws an Error.
  • 'accessKeyId' - optional. If available together with secretAccessKey, then client.setCredentials() is automatically called.
  • 'secretAccessKey' - optional.

The client loader creates a new object on every invocation.

Clone this wiki locally