Interface CfnPricingPlanProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPricingPlanProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:46.611Z")
@Stability(Stable)
public interface CfnPricingPlanProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPricingPlan.
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.billingconductor.*;
CfnPricingPlanProps cfnPricingPlanProps = CfnPricingPlanProps.builder()
.name("name")
// the properties below are optional
.description("description")
.pricingRuleArns(List.of("pricingRuleArns"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPricingPlanPropsstatic final classAn implementation forCfnPricingPlanProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPricingPlanProps.Builderbuilder()default StringThe pricing plan description.getName()The name of a pricing plan.ThePricingRuleArnsthat are associated with the Pricing Plan.getTags()A map that contains tag keys and tag values that are attached to a pricing plan.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of a pricing plan.- See Also:
-
getDescription
The pricing plan description.- See Also:
-
getPricingRuleArns
ThePricingRuleArnsthat are associated with the Pricing Plan.- See Also:
-
getTags
A map that contains tag keys and tag values that are attached to a pricing plan.- See Also:
-
builder
- Returns:
- a
CfnPricingPlanProps.BuilderofCfnPricingPlanProps
-