List Custom Line Items
billingconductor_list_custom_line_items | R Documentation |
A paginated call to get a list of all custom line items (FFLIs) for the given billing period¶
Description¶
A paginated call to get a list of all custom line items (FFLIs) for the given billing period. If you don't provide a billing period, the current billing period is used.
Usage¶
billingconductor_list_custom_line_items(BillingPeriod, MaxResults,
NextToken, Filters)
Arguments¶
BillingPeriod |
The preferred billing period to get custom line items (FFLIs). |
MaxResults |
The maximum number of billing groups to retrieve. |
NextToken |
The pagination token that's used on subsequent calls to get custom line items (FFLIs). |
Filters |
A |
Value¶
A list with the following syntax:
list(
CustomLineItems = list(
list(
Arn = "string",
Name = "string",
ChargeDetails = list(
Flat = list(
ChargeValue = 123.0
),
Percentage = list(
PercentageValue = 123.0
),
Type = "CREDIT"|"FEE",
LineItemFilters = list(
list(
Attribute = "LINE_ITEM_TYPE",
MatchOption = "NOT_EQUAL",
Values = list(
"SAVINGS_PLAN_NEGATION"
)
)
)
),
CurrencyCode = "USD"|"CNY",
Description = "string",
ProductCode = "string",
BillingGroupArn = "string",
CreationTime = 123,
LastModifiedTime = 123,
AssociationSize = 123,
AccountId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_custom_line_items(
BillingPeriod = "string",
MaxResults = 123,
NextToken = "string",
Filters = list(
Names = list(
"string"
),
BillingGroups = list(
"string"
),
Arns = list(
"string"
),
AccountIds = list(
"string"
)
)
)