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¶
BillingPeriod
The preferred billing period to get billing groups.
MaxResults
The maximum number of billing groups to retrieve.
NextToken
The pagination token that's used on subsequent calls to get billing groups.
Filters
A
ListBillingGroupsFilter
that 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"
)