Class CfnPricingPlan

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.830Z") @Stability(Stable) public class CfnPricingPlan extends CfnResource implements IInspectable
A CloudFormation AWS::BillingConductor::PricingPlan.

Creates a pricing plan that is used for computing AWS charges for billing groups.

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.*;
 CfnPricingPlan cfnPricingPlan = CfnPricingPlan.Builder.create(this, "MyCfnPricingPlan")
         .name("name")
         // the properties below are optional
         .description("description")
         .pricingRuleArns(List.of("pricingRuleArns"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnPricingPlan

      protected CfnPricingPlan(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnPricingPlan

      protected CfnPricingPlan(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnPricingPlan

      @Stability(Stable) public CfnPricingPlan(@NotNull Construct scope, @NotNull String id, @NotNull CfnPricingPlanProps props)
      Create a new AWS::BillingConductor::PricingPlan.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the created pricing plan.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public Number getAttrCreationTime()
      The time the pricing plan was created.
    • getAttrLastModifiedTime

      @Stability(Stable) @NotNull public Number getAttrLastModifiedTime()
      The most recent time the pricing plan was modified.
    • getAttrSize

      @Stability(Stable) @NotNull public Number getAttrSize()
      The pricing rules count currently associated with this pricing plan list element.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      A map that contains tag keys and tag values that are attached to a pricing plan.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of a pricing plan.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of a pricing plan.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      The pricing plan description.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The pricing plan description.
    • getPricingRuleArns

      @Stability(Stable) @Nullable public List<String> getPricingRuleArns()
      The PricingRuleArns that are associated with the Pricing Plan.
    • setPricingRuleArns

      @Stability(Stable) public void setPricingRuleArns(@Nullable List<String> value)
      The PricingRuleArns that are associated with the Pricing Plan.