subscribers_for_notifications
Creates, updates, deletes, gets or lists a subscribers_for_notifications resource.
Overview
| Name | subscribers_for_notifications |
| Type | Resource |
| Id | aws.budgets.subscribers_for_notifications |
Fields
The following fields are returned by SELECT queries:
- describe_subscribers_for_notification
| Name | Datatype | Description |
|---|---|---|
address | string | The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email. When you create a subscriber, the value of Address can't contain line breaks. (pattern: <code>(.[\n\r\t\f\ ]?)</code>) |
subscription_type | string | The type of notification that Amazon Web Services sends to a subscriber. (SNS, EMAIL) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_subscribers_for_notification | select | region | Lists the subscribers that are associated with a notification. |
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_subscribers_for_notification
Lists the subscribers that are associated with a notification.
SELECT
address,
subscription_type
FROM aws.budgets.subscribers_for_notifications
WHERE region = '{{ region }}' -- required
;