Interface CfnSubscriptionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubscriptionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:51:50.374Z")
@Stability(Stable)
public interface CfnSubscriptionProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pricingplanmanager.*;
CfnSubscriptionProps cfnSubscriptionProps = CfnSubscriptionProps.builder()
.planFamily("planFamily")
.planTier("planTier")
.resourceArns(List.of("resourceArns"))
// the properties below are optional
.usageLevel("usageLevel")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSubscriptionPropsstatic final classAn implementation forCfnSubscriptionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSubscriptionProps.Builderbuilder()The name of the pricing plan family.The tier of the pricing plan.The ARNs of resources associated with the subscription.default StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPlanFamily
The name of the pricing plan family.- See Also:
-
getPlanTier
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.
- See Also:
-
getResourceArns
The ARNs of resources associated with the subscription.- See Also:
-
getUsageLevel
- See Also:
-
builder
- Returns:
- a
CfnSubscriptionProps.BuilderofCfnSubscriptionProps
-