Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.
/ awssum-amazon-emr Public archive

(deprecated: use aws-sdk) NodeJS module to talk to Amazon Elastic MapReduce (EMR).

License

Notifications You must be signed in to change notification settings

chilts/awssum-amazon-emr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NOTE: AwsSum is now deprecated. Please use aws-sdk instead.

awssum-amazon-emr

This is an AwsSum plugin!

You'll need to add awssum-amazon-emr to your package.json dependencies. Both awssum and awssum-amazon are pulled in as peer dependencies.

Example

Describe your job flows:

var fmt = require('fmt');
var amazonEmr = require('awssum-amazon-emr.js');

var emr = new amazonEmr.Emr({
    'accessKeyId'     : process.env.ACCESS_KEY_ID,
    'secretAccessKey' : process.env.SECRET_ACCESS_KEY,
    'region'          : amazonEmr.US_EAST_1,
});

emr.DescribeJobFlows(function(err, data) {
    fmt.dump(err, 'err');
    fmt.dump(data, 'data');
});

(Ends)

About

(deprecated: use aws-sdk) NodeJS module to talk to Amazon Elastic MapReduce (EMR).

Resources

License

Stars

Watchers

Forks

Packages

No packages published