aws-cdk-lib.aws_billingconductor.CfnPricingPlanProps

interface CfnPricingPlanProps

LanguageType name
.NETAmazon.CDK.AWS.BillingConductor.CfnPricingPlanProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbillingconductor#CfnPricingPlanProps
Javasoftware.amazon.awscdk.services.billingconductor.CfnPricingPlanProps
Pythonaws_cdk.aws_billingconductor.CfnPricingPlanProps
TypeScript aws-cdk-lib » aws_billingconductor » CfnPricingPlanProps

Properties for defining a CfnPricingPlan.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_billingconductor as billingconductor } from 'aws-cdk-lib';
const cfnPricingPlanProps: billingconductor.CfnPricingPlanProps = {
  name: 'name',

  // the properties below are optional
  description: 'description',
  pricingRuleArns: ['pricingRuleArns'],
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe name of a pricing plan.
description?stringThe pricing plan description.
pricingRuleArns?string[]The PricingRuleArns that are associated with the Pricing Plan.
tags?CfnTag[]A map that contains tag keys and tag values that are attached to a pricing plan.

name

Type: string

The name of a pricing plan.


description?

Type: string (optional)

The pricing plan description.


pricingRuleArns?

Type: string[] (optional)

The PricingRuleArns that are associated with the Pricing Plan.


tags?

Type: CfnTag[] (optional)

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