List Account Associations
billingconductor_list_account_associations | R Documentation |
This is a paginated call to list linked accounts that are linked to the payer account for the specified time period¶
Description¶
This is a paginated call to list linked accounts that are linked to the payer account for the specified time period. If no information is provided, the current billing period is used. The response will optionally include the billing group that's associated with the linked account.
Usage¶
billingconductor_list_account_associations(BillingPeriod, Filters,
NextToken)
Arguments¶
BillingPeriod |
The preferred billing period to get account associations. |
Filters |
The filter on the account ID of the linked account, or any of the following:
|
NextToken |
The pagination token that's used on subsequent calls to retrieve accounts. |
Value¶
A list with the following syntax:
list(
LinkedAccounts = list(
list(
AccountId = "string",
BillingGroupArn = "string",
AccountName = "string",
AccountEmail = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_account_associations(
BillingPeriod = "string",
Filters = list(
Association = "string",
AccountId = "string",
AccountIds = list(
"string"
)
),
NextToken = "string"
)