List Billing Group Cost Reports
billingconductor_list_billing_group_cost_reports | R Documentation |
A paginated call to retrieve a summary report of actual Amazon Web Services charges and the calculated Amazon Web Services charges based on the associated pricing plan of a billing group¶
Description¶
A paginated call to retrieve a summary report of actual Amazon Web Services charges and the calculated Amazon Web Services charges based on the associated pricing plan of a billing group.
Usage¶
billingconductor_list_billing_group_cost_reports(BillingPeriod,
MaxResults, NextToken, Filters)
Arguments¶
BillingPeriod |
The preferred billing period for your report. |
MaxResults |
The maximum number of reports to retrieve. |
NextToken |
The pagination token that's used on subsequent calls to get reports. |
Filters |
A |
Value¶
A list with the following syntax:
list(
BillingGroupCostReports = list(
list(
Arn = "string",
AWSCost = "string",
ProformaCost = "string",
Margin = "string",
MarginPercentage = "string",
Currency = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_billing_group_cost_reports(
BillingPeriod = "string",
MaxResults = 123,
NextToken = "string",
Filters = list(
BillingGroupArns = list(
"string"
)
)
)