Interface CfnPricingPlanProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPricingPlanProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.831Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPricingPlanProps
static final class
An implementation forCfnPricingPlanProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPricingPlanProps.Builder
builder()
default String
The pricing plan description.getName()
The name of a pricing plan.ThePricingRuleArns
that 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. -
getDescription
The pricing plan description. -
getPricingRuleArns
ThePricingRuleArns
that are associated with the Pricing Plan. -
getTags
A map that contains tag keys and tag values that are attached to a pricing plan. -
builder
- Returns:
- a
CfnPricingPlanProps.Builder
ofCfnPricingPlanProps
-