List Origination Numbers
sns_list_origination_numbers | R Documentation |
Lists the calling Amazon Web Services account's dedicated origination numbers and their metadata¶
Description¶
Lists the calling Amazon Web Services account's dedicated origination numbers and their metadata. For more information about origination numbers, see Origination numbers in the Amazon SNS Developer Guide.
Usage¶
sns_list_origination_numbers(NextToken, MaxResults)
Arguments¶
NextToken |
Token that the previous |
MaxResults |
The maximum number of origination numbers to return. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
PhoneNumbers = list(
list(
CreatedAt = as.POSIXct(
"2015-01-01"
),
PhoneNumber = "string",
Status = "string",
Iso2CountryCode = "string",
RouteType = "Transactional"|"Promotional"|"Premium",
NumberCapabilities = list(
"SMS"|"MMS"|"VOICE"
)
)
)
)
Request syntax¶
svc$list_origination_numbers(
NextToken = "string",
MaxResults = 123
)