Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • npm
  • Socket score

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc