notify_countries
Creates, updates, deletes, gets or lists a notify_countries resource.
Overview
| Name | notify_countries |
| Type | Resource |
| Id | aws.pinpoint_sms_voice_v2.notify_countries |
Fields
The following fields are returned by SELECT queries:
- list_notify_countries
| Name | Datatype | Description |
|---|---|---|
country_name | string | The name of the country. |
customer_owned_identity_required | boolean | Whether a customer-owned identity is required to send notify messages to this country. |
iso_country_code | string | The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. (pattern: <code>[A-Z]{2}</code>) |
supported_channels | array | An array of supported channels for the country. Supported values include SMS and VOICE. |
supported_tiers | array | An array of supported tiers for the country. |
supported_use_cases | array | An array of supported use cases for the country. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_notify_countries | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_notify_countries
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
;