CfnPricingPlanMixinProps

class aws_cdk.mixins_preview.aws_billingconductor.mixins.CfnPricingPlanMixinProps(*, description=None, name=None, pricing_rule_arns=None, tags=None)

Bases: object

Properties for CfnPricingPlanPropsMixin.

Parameters:
  • description (Optional[str]) – The pricing plan description.

  • name (Optional[str]) – The name of a pricing plan.

  • 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.mixins_preview.aws_billingconductor import mixins as billingconductor_mixins

cfn_pricing_plan_mixin_props = billingconductor_mixins.CfnPricingPlanMixinProps(
    description="description",
    name="name",
    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