Skip to main content

subscribers_for_notifications

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

Overview

Namesubscribers_for_notifications
TypeResource
Idaws.budgets.subscribers_for_notifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
addressstringThe 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_typestringThe type of notification that Amazon Web Services sends to a subscriber. (SNS, EMAIL)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_subscribers_for_notificationselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the subscribers that are associated with a notification.

SELECT
address,
subscription_type
FROM aws.budgets.subscribers_for_notifications
WHERE region = '{{ region }}' -- required
;