Le Ngoc Loan
Le Ngoc Loan

Reputation: 306

How to calculator cost per month in AWS SDK?

I want to use nodejs to calculate the cost and billing each month for my users in AWS.

However, I could not find SDK support to get cost and billing information each month.

billing

Upvotes: 0

Views: 739

Answers (2)

Madhukar Mohanraju
Madhukar Mohanraju

Reputation: 2863

There are some node.js sdk available under Budgets section. See if you can use these api's to cater to your needs.

http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Budgets.html

Upvotes: 1

John Hanley
John Hanley

Reputation: 81336

AWS supports programmatic access to billing data. Basically you assign an S3 bucket and then parse the CSV log files that billing generates.

Programmatic Access to AWS Billing Data

API Reference

Upvotes: 0

Related Questions