budget_notifications_for_accounts
Creates, updates, deletes, gets or lists a budget_notifications_for_accounts resource.
Overview
| Name | budget_notifications_for_accounts |
| Type | Resource |
| Id | aws.budgets.budget_notifications_for_accounts |
Fields
The following fields are returned by SELECT queries:
- describe_budget_notifications_for_account
| Name | Datatype | Description |
|---|---|---|
budget_name | string | A 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>) |
notifications | array | A list of notifications. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_budget_notifications_for_account | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_budget_notifications_for_account
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
;