interface CfnSubscriptionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PricingPlanManager.CfnSubscriptionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspricingplanmanager#CfnSubscriptionProps |
Java | software.amazon.awscdk.services.pricingplanmanager.CfnSubscriptionProps |
Python | aws_cdk.aws_pricingplanmanager.CfnSubscriptionProps |
TypeScript | aws-cdk-lib » aws_pricingplanmanager » CfnSubscriptionProps |
Properties for defining a CfnSubscription.
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-lib';
const cfnSubscriptionProps: pricingplanmanager.CfnSubscriptionProps = {
planFamily: 'planFamily',
planTier: 'planTier',
resourceArns: ['resourceArns'],
// the properties below are optional
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
The name of the pricing plan family.
planTier
Type:
string
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[]
The ARNs of resources associated with the subscription.
usageLevel?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript