Reputation: 306
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.
Upvotes: 0
Views: 739
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
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
Upvotes: 0