Skip to content

List Pricing Plans

billingconductor_list_pricing_plans R Documentation

A paginated call to get pricing plans for the given billing period

Description

A paginated call to get pricing plans for the given billing period. If you don't provide a billing period, the current billing period is used.

Usage

billingconductor_list_pricing_plans(BillingPeriod, Filters, MaxResults,
  NextToken)

Arguments

BillingPeriod

The preferred billing period to get pricing plan.

Filters

A ListPricingPlansFilter that specifies the Amazon Resource Name (ARNs) of pricing plans to retrieve pricing plans information.

MaxResults

The maximum number of pricing plans to retrieve.

NextToken

The pagination token that's used on subsequent call to get pricing plans.

Value

A list with the following syntax:

list(
  BillingPeriod = "string",
  PricingPlans = list(
    list(
      Name = "string",
      Arn = "string",
      Description = "string",
      Size = 123,
      CreationTime = 123,
      LastModifiedTime = 123
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_pricing_plans(
  BillingPeriod = "string",
  Filters = list(
    Arns = list(
      "string"
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)