Skip to content

Create Pricing Plan

billingconductor_create_pricing_plan R Documentation

Creates a pricing plan that is used for computing Amazon Web Services charges for billing groups

Description

Creates a pricing plan that is used for computing Amazon Web Services charges for billing groups.

Usage

billingconductor_create_pricing_plan(ClientToken, Name, Description,
  PricingRuleArns, Tags)

Arguments

ClientToken

A unique, case-sensitive identifier that you specify to ensure idempotency of the request. Idempotency ensures that an API request completes no more than one time. With an idempotent request, if the original request completes successfully, any subsequent retries complete successfully without performing any further actions.

Name

[required] The name of the pricing plan. The names must be unique to each pricing plan.

Description

The description of the pricing plan.

PricingRuleArns

A list of Amazon Resource Names (ARNs) that define the pricing plan parameters.

Tags

A map that contains tag keys and tag values that are attached to a pricing plan.

Value

A list with the following syntax:

list(
  Arn = "string"
)

Request syntax

svc$create_pricing_plan(
  ClientToken = "string",
  Name = "string",
  Description = "string",
  PricingRuleArns = list(
    "string"
  ),
  Tags = list(
    "string"
  )
)