Skip to main content

budget_with_resources

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

Overview

Namebudget_with_resources
TypeResource
Idaws.servicecatalog.budget_with_resources

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
associate_budget_with_resourceupdateregion, BudgetName, ResourceIdAssociates the specified budget with 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)

UPDATE examples

Associates the specified budget with the specified resource.

UPDATE aws.servicecatalog.budget_with_resources
SET
BudgetName = '{{ BudgetName }}',
ResourceId = '{{ ResourceId }}'
WHERE
region = '{{ region }}' --required
AND BudgetName = '{{ BudgetName }}' --required
AND ResourceId = '{{ ResourceId }}' --required;