Skip to content

List Budgets For Resource

servicecatalog_list_budgets_for_resource R Documentation

Lists all the budgets associated to the specified resource

Description

Lists all the budgets associated to the specified resource.

Usage

servicecatalog_list_budgets_for_resource(AcceptLanguage, ResourceId,
  PageSize, PageToken)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

ResourceId

[required] The resource identifier.

PageSize

The maximum number of items to return with this call.

PageToken

The page token for the next set of results. To retrieve the first set of results, use null.

Value

A list with the following syntax:

list(
  Budgets = list(
    list(
      BudgetName = "string"
    )
  ),
  NextPageToken = "string"
)

Request syntax

svc$list_budgets_for_resource(
  AcceptLanguage = "string",
  ResourceId = "string",
  PageSize = 123,
  PageToken = "string"
)