You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

aws-billing

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-billing

AWS billing API for node

1.0.0
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

aws-billing

A node API to learn how much your Amazon Web Services hosting costs.

Installation

$ npm install aws-billing

Example

First, set up programmatic billing access.

var accountId = '1111-2222-3333';
var key = 'DJ9289DSAKSI2938A';
var secret = 'b/4239+skdj292jd92jd29dj229';
var bucket = 'company-aws-billing';
var region = 'us-west-2';

Then you can query your billing cost:

var billing = require('aws-billing')(accountId, key, secret, bucket, region);

billing(function (err, costs) {
    // ..
});

The costs variable shows the costs for the current billing period by product.

{ total: 4839.25,
  start: Thu Jan 01 2015 00:00:00 GMT+0000 (UTC),
  end: Thu Jan 08 2015 02:34:50 GMT+0000 (UTC),
  products:
   { 'data transfer': 432.12,
     'elastic mapreduce': 864.43,
     'cloudfront': 124.42,
     'support (business)': 120.12,
     'elasticache': 124.12,
     'simple storage service': 172.46,
     'redshift': 423.77,
     'elastic compute cloud': 123.32,
     'route 53': 454.73 } }

License

MIT

Keywords

AWS

FAQs

Package last updated on 08 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts