interface CfnPricingPlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BillingConductor.Mixins.CfnPricingPlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbillingconductor/mixins#CfnPricingPlanMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.billingconductor.mixins.CfnPricingPlanMixinProps |
Python | aws_cdk.mixins_preview.aws_billingconductor.mixins.CfnPricingPlanMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_billingconductor » mixins » CfnPricingPlanMixinProps |
Properties for CfnPricingPlanPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as billingconductor_mixins } from '@aws-cdk/mixins-preview/aws-billingconductor';
const cfnPricingPlanMixinProps: billingconductor_mixins.CfnPricingPlanMixinProps = {
description: 'description',
name: 'name',
pricingRuleArns: ['pricingRuleArns'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The pricing plan description. |
| name? | string | The name of a pricing plan. |
| pricing | string[] | The PricingRuleArns that are associated with the Pricing Plan. |
| tags? | Cfn[] | A map that contains tag keys and tag values that are attached to a pricing plan. |
description?
Type:
string
(optional)
The pricing plan description.
name?
Type:
string
(optional)
The name of a pricing plan.
pricingRuleArns?
Type:
string[]
(optional)
The PricingRuleArns that are associated with the Pricing Plan.
tags?
Type:
Cfn[]
(optional)
A map that contains tag keys and tag values that are attached to a pricing plan.

.NET
Go
Java
Python
TypeScript