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]]) – The PricingRuleArns 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-pricingplan.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-pricingplan.html#cfn-billingconductor-pricingplan-description

name

The name of a pricing plan.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-pricingplan.html#cfn-billingconductor-pricingplan-name

pricing_rule_arns

The PricingRuleArns that are associated with the Pricing Plan.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-pricingplan.html#cfn-billingconductor-pricingplan-pricingrulearns

tags

A map that contains tag keys and tag values that are attached to a pricing plan.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-pricingplan.html#cfn-billingconductor-pricingplan-tags