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¶
Arguments¶
NextTokenToken that the previous
list_origination_numbersrequest returns.MaxResultsThe 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"
)
)
)
)