Skip to main content

budget_notifications_for_accounts

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

Overview

Namebudget_notifications_for_accounts
TypeResource
Idaws.budgets.budget_notifications_for_accounts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
budget_namestringA string that represents the budget name. The ":" and "" characters, and the "/action/" substring, aren't allowed. Budget names are validated for content. Names that contain phone numbers, URLs, or email addresses combined with certain terms may be rejected. (pattern: <code>^(?![^:\]/action/|(?i).<script>.</script>.)[^:\]+$</code>)
notificationsarrayA list of notifications.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_budget_notifications_for_accountselectregionLists the budget names and notifications that are associated with an account.

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 the budget names and notifications that are associated with an account.

SELECT
budget_name,
notifications
FROM aws.budgets.budget_notifications_for_accounts
WHERE region = '{{ region }}' -- required
;