List Billing Groups
| billingconductor_list_billing_groups | R Documentation |
A paginated call to retrieve a list of billing groups for the given billing period¶
Description¶
A paginated call to retrieve a list of billing groups for the given billing period. If you don't provide a billing group, the current billing period is used.
Usage¶
Arguments¶
BillingPeriodThe preferred billing period to get billing groups.
MaxResultsThe maximum number of billing groups to retrieve.
NextTokenThe pagination token that's used on subsequent calls to get billing groups.
FiltersA
ListBillingGroupsFilterthat specifies the billing group and pricing plan to retrieve billing group information.
Value¶
A list with the following syntax:
list(
BillingGroups = list(
list(
Name = "string",
Arn = "string",
Description = "string",
PrimaryAccountId = "string",
ComputationPreference = list(
PricingPlanArn = "string"
),
Size = 123,
CreationTime = 123,
LastModifiedTime = 123,
Status = "ACTIVE"|"PRIMARY_ACCOUNT_MISSING",
StatusReason = "string",
AccountGrouping = list(
AutoAssociate = TRUE|FALSE
)
)
),
NextToken = "string"
)