interface CfnPricingPlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BillingConductor.CfnPricingPlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbillingconductor#CfnPricingPlanMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.billingconductor.CfnPricingPlanMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_billingconductor.CfnPricingPlanMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_billingconductor » 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 { aws_billingconductor as billingconductor } from '@aws-cdk/cfn-property-mixins';
const cfnPricingPlanMixinProps: billingconductor.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