interface CfnSubscriptionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PricingPlanManager.CfnSubscriptionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspricingplanmanager#CfnSubscriptionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.pricingplanmanager.CfnSubscriptionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_pricingplanmanager.CfnSubscriptionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pricingplanmanager » CfnSubscriptionMixinProps |
Properties for CfnSubscriptionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pricingplanmanager as pricingplanmanager } from '@aws-cdk/cfn-property-mixins';
const cfnSubscriptionMixinProps: pricingplanmanager.CfnSubscriptionMixinProps = {
planFamily: 'planFamily',
planTier: 'planTier',
resourceArns: ['resourceArns'],
usageLevel: 'usageLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| plan | string | The name of the pricing plan family. |
| plan | string | The tier of the pricing plan. |
| resource | string[] | The ARNs of resources associated with the subscription. |
| usage | string |
planFamily?
Type:
string
(optional)
The name of the pricing plan family.
planTier?
Type:
string
(optional)
The tier of the pricing plan.
Upgrades take effect immediately. However, rolling back an upgrade does not revert billing instantly; it schedules a downgrade to the end of the current billing period, and the higher-tier charge applies for the remainder of that month. While a downgrade is scheduled, the CurrentPlanTier property reports the tier currently being billed.
resourceArns?
Type:
string[]
(optional)
The ARNs of resources associated with the subscription.
usageLevel?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript