Access AWS billing information using python boto3 or any api ?

0

I am trying to get AWS Account Monthly billing information using python boto3 or any API using programmatic way. I couldn't find any resource related.

Amudhan
已提问 1 年前1558 查看次数
2 回答
1
已接受的回答

Use the get_cost_and_usage_with_resources API in which you need to add filters to get results on the services you would like to view costs monthly:

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ce/client/get_cost_and_usage_with_resources.html

AWS
vtjean
已回答 1 年前
profile picture
专家
已审核 1 个月前
1
profile picture
专家
已回答 1 年前
  • Actually cost and usage are more granular information but I just want information about total charge for a service in month.

  • You can also get monthly total charge easily lIke this.

    '''python res = boto3.client('ce').get_cost_and_usage( TimePeriod = {"Start": start_day, "End": end_day}, Granularity = "MONTHLY", Metrics = ["UnblendedCost"])

    print(f"TotalCost: {res['ResultsByTime'][0]['Total']['UnblendedCost']['Amount']}") '''

  • I see discrepancy in the amount showed using "cost explorer" vs "billing dashboard" for a month. for ex. in billing dashboard S3 and S3 glacier in total shows 1000 USD but in cost explorer for S3 service it is showing as 1040 USD. There is no difference even unblended, blended or amortized. why is this difference ?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则