Skip to main content

budget_from_resources

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

Overview

Namebudget_from_resources
TypeResource
Idaws.servicecatalog.budget_from_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
disassociate_budget_from_resourceupdateregion, BudgetName, ResourceIdDisassociates the specified budget from 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

Disassociates the specified budget from the specified resource.

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