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. |
Name |
The name of the billing group. The names must be unique to each billing group. |
Status |
The status of the billing group. Only one of the valid values can be used. |
ComputationPreference |
The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group. |
Description |
A description of the billing group. |
AccountGrouping |
Specifies if the billing group has automatic account association
( |
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
)
)
Request syntax¶
svc$update_billing_group(
Arn = "string",
Name = "string",
Status = "ACTIVE"|"PRIMARY_ACCOUNT_MISSING",
ComputationPreference = list(
PricingPlanArn = "string"
),
Description = "string",
AccountGrouping = list(
AutoAssociate = TRUE|FALSE
)
)