List Notify Countries
| pinpointsmsvoicev2_list_notify_countries | R Documentation |
Lists countries that support notify messaging¶
Description¶
Lists countries that support notify messaging. You can optionally filter by channel, use case, or tier.
Usage¶
pinpointsmsvoicev2_list_notify_countries(Channels, UseCases, Tier,
NextToken, MaxResults)
Arguments¶
Channels |
An array of channels to filter the results by. |
UseCases |
An array of use cases to filter the results by. |
Tier |
The tier to filter the results by. |
NextToken |
The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request. |
MaxResults |
The maximum number of results to return per each request. |
Value¶
A list with the following syntax:
list(
NotifyCountries = list(
list(
IsoCountryCode = "string",
CountryName = "string",
SupportedChannels = list(
"SMS"|"VOICE"|"MMS"|"RCS"
),
SupportedUseCases = list(
"CODE_VERIFICATION"
),
SupportedTiers = list(
"BASIC"|"ADVANCED"
),
CustomerOwnedIdentityRequired = TRUE|FALSE
)
),
NextToken = "string"
)
Request syntax¶
svc$list_notify_countries(
Channels = list(
"SMS"|"VOICE"|"MMS"|"RCS"
),
UseCases = list(
"CODE_VERIFICATION"
),
Tier = "BASIC"|"ADVANCED",
NextToken = "string",
MaxResults = 123
)