CfnPricingPlanProps
- class aws_cdk.aws_billingconductor.CfnPricingPlanProps(*, name, description=None, pricing_rule_arns=None, tags=None)
Bases:
object
Properties for defining a
CfnPricingPlan
.- Parameters:
name (
str
) – The name of a pricing plan.description (
Optional
[str
]) – The pricing plan description.pricing_rule_arns (
Optional
[Sequence
[str
]]) – ThePricingRuleArns
that are associated with the Pricing Plan.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A map that contains tag keys and tag values that are attached to a pricing plan.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_billingconductor as billingconductor cfn_pricing_plan_props = billingconductor.CfnPricingPlanProps( name="name", # the properties below are optional description="description", pricing_rule_arns=["pricingRuleArns"], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The pricing plan description.
- name
The name of a pricing plan.
- pricing_rule_arns
The
PricingRuleArns
that are associated with the Pricing Plan.
- tags
A map that contains tag keys and tag values that are attached to a pricing plan.