Skip to main content

supported_phone_number_countries

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

Overview

Namesupported_phone_number_countries
TypeResource
Idaws.chime_sdk_voice.supported_phone_number_countries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
phone_number_countriesarrayThe supported phone number countries.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_supported_phone_number_countriesselectproduct-type, regionLists the countries that you can order phone numbers from.

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
product-typestringThe phone number product type.
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the countries that you can order phone numbers from.

SELECT
phone_number_countries
FROM aws.chime_sdk_voice.supported_phone_number_countries
WHERE `product-type` = '{{ product-type }}' -- required
AND region = '{{ region }}' -- required
;