Skip to main content

budgets_for_resources

Creates, updates, deletes, gets or lists a budgets_for_resources resource.

Overview

Namebudgets_for_resources
TypeResource
Idaws.servicecatalog.budgets_for_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
budgetsarrayInformation about the associated budgets.
next_page_tokenstringThe page token to use to retrieve the next set of results. If there are no additional results, this value is null. (pattern: <code>[\u0009\u000a\u000d\u0020-\uD7FF\uE000-\uFFFD]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_budgets_for_resourceselectregionLists all the budgets associated to the specified resource.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists all the budgets associated to the specified resource.

SELECT
budgets,
next_page_token
FROM aws.servicecatalog.budgets_for_resources
WHERE region = '{{ region }}' -- required
;