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-17T14:54:08.939Z")
@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.CloudFormation does not change the tier of an existing subscription; a stack update that changes the tier, upgrading or downgrading it, is rejected.
- See Also:
-
getResourceArns
The ARNs of resources associated with the subscription.- See Also:
-
getUsageLevel
- See Also:
-
builder
- Returns:
- a
CfnSubscriptionProps.BuilderofCfnSubscriptionProps
-