Update Pricing Rule
| billingconductor_update_pricing_rule | R Documentation |
Updates an existing pricing rule¶
Description¶
Updates an existing pricing rule.
Usage¶
Arguments¶
Arn[required] The Amazon Resource Name (ARN) of the pricing rule to update.
NameThe new name of the pricing rule. The name must be unique to each pricing rule.
DescriptionThe new description for the pricing rule.
TypeThe new pricing rule type.
ModifierPercentageThe new modifier to show pricing plan rates as a percentage.
TieringThe set of tiering configurations for the pricing rule.
Value¶
A list with the following syntax:
list(
Arn = "string",
Name = "string",
Description = "string",
Scope = "GLOBAL"|"SERVICE"|"BILLING_ENTITY"|"SKU",
Type = "MARKUP"|"DISCOUNT"|"TIERING",
ModifierPercentage = 123.0,
Service = "string",
AssociatedPricingPlanCount = 123,
LastModifiedTime = 123,
BillingEntity = "string",
Tiering = list(
FreeTier = list(
Activated = TRUE|FALSE
)
),
UsageType = "string",
Operation = "string"
)