Below is the boto3 request to invoke AWS Cost API to fetch the linkedAccount Costs. How can I add a filter to this such that I get the cost excluding the credits?
client = boto3.client('ce')
request = {
'TimePeriod' : {
'Start': start_date,
'End': end_date
},
'Granularity' : granularity,
"GroupBy": [
{
"Type": "DIMENSION",
"Key": "LINKED_ACCOUNT"
}
],
"Metrics" : [ 'UnblendedCost', 'UsageQuantity' ]
}
response = client.get_cost_and_usage(**request)
You may add a filter. Refer the documentation.