Skip to content
/ gas Public
forked from neilobremski/gas

Google Apps Script modules for AWS, etc.

License

Notifications You must be signed in to change notification settings

kyle-dydx/gas

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Now You're Cooking With GAS!

Google Apps Script modules for AWS, etc.

Usage:

  1. Create a new File > Script in your Google Apps Script project.
  2. Use the base name of the script module you're interested in, e.g. "GasAWS" (this becomes GasAWS.gs).
  3. Call the module's functions.

For example, after copying the contents of GasAWS.js to a new GasAWS.gs script file you can try running this:

function TestGas() {
  AWS.init("access_key-id", "secret-access-key");
  let response = AWS.request('ec2', 'DescribeInstances', {"Version":"2015-10-01"});
  Logger.log(response);
}

Voila!

About

Google Apps Script modules for AWS, etc.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%