Update Billing Group
| billingconductor_update_billing_group | R Documentation |
This updates an existing billing group¶
Description¶
This updates an existing billing group.
Usage¶
billingconductor_update_billing_group(Arn, Name, Status,
ComputationPreference, Description, AccountGrouping)
Arguments¶
Arn[required] The Amazon Resource Name (ARN) of the billing group being updated.
NameThe name of the billing group. The names must be unique to each billing group.
StatusThe status of the billing group. Only one of the valid values can be used.
ComputationPreferenceThe preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.
DescriptionA description of the billing group.
AccountGroupingSpecifies if the billing group has automatic account association (
AutoAssociate) enabled.
Value¶
A list with the following syntax:
list(
Arn = "string",
Name = "string",
Description = "string",
PrimaryAccountId = "string",
PricingPlanArn = "string",
Size = 123,
LastModifiedTime = 123,
Status = "ACTIVE"|"PRIMARY_ACCOUNT_MISSING",
StatusReason = "string",
AccountGrouping = list(
AutoAssociate = TRUE|FALSE
)
)