Skip to main content

notify_countries

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

Overview

Namenotify_countries
TypeResource
Idaws.pinpoint_sms_voice_v2.notify_countries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
country_namestringThe name of the country.
customer_owned_identity_requiredbooleanWhether a customer-owned identity is required to send notify messages to this country.
iso_country_codestringThe two-character code, in ISO 3166-1 alpha-2 format, for the country or region. (pattern: <code>[A-Z]{2}</code>)
supported_channelsarrayAn array of supported channels for the country. Supported values include SMS and VOICE.
supported_tiersarrayAn array of supported tiers for the country.
supported_use_casesarrayAn array of supported use cases for the country.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_notify_countriesselectregionLists countries that support notify messaging. You can optionally filter by channel, use case, or tier.

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 countries that support notify messaging. You can optionally filter by channel, use case, or tier.

SELECT
country_name,
customer_owned_identity_required,
iso_country_code,
supported_channels,
supported_tiers,
supported_use_cases
FROM aws.pinpoint_sms_voice_v2.notify_countries
WHERE region = '{{ region }}' -- required
;