List Pricing Rules Associated To Pricing Plan
billingconductor_list_pricing_rules_associated_to_pricing_plan | R Documentation |
Lists the pricing rules that are associated with a pricing plan¶
Description¶
Lists the pricing rules that are associated with a pricing plan.
Usage¶
billingconductor_list_pricing_rules_associated_to_pricing_plan(
BillingPeriod, PricingPlanArn, MaxResults, NextToken)
Arguments¶
BillingPeriod |
The billing period for which the pricing rule associations are to be listed. |
PricingPlanArn |
[required] The Amazon Resource Name (ARN) of the pricing plan for which associations are to be listed. |
MaxResults |
The optional maximum number of pricing rule associations to retrieve. |
NextToken |
The optional pagination token returned by a previous call. |
Value¶
A list with the following syntax:
list(
BillingPeriod = "string",
PricingPlanArn = "string",
PricingRuleArns = list(
"string"
),
NextToken = "string"
)
Request syntax¶
svc$list_pricing_rules_associated_to_pricing_plan(
BillingPeriod = "string",
PricingPlanArn = "string",
MaxResults = 123,
NextToken = "string"
)