List Watchlists
voiceid_list_watchlists | R Documentation |
Lists all watchlists in a specified domain¶
Description¶
Lists all watchlists in a specified domain.
Usage¶
voiceid_list_watchlists(DomainId, MaxResults, NextToken)
Arguments¶
DomainId |
[required] The identifier of the domain. |
MaxResults |
The maximum number of results that are returned per call. You can
use |
NextToken |
If |
Value¶
A list with the following syntax:
list(
NextToken = "string",
WatchlistSummaries = list(
list(
CreatedAt = as.POSIXct(
"2015-01-01"
),
DefaultWatchlist = TRUE|FALSE,
Description = "string",
DomainId = "string",
Name = "string",
UpdatedAt = as.POSIXct(
"2015-01-01"
),
WatchlistId = "string"
)
)
)
Request syntax¶
svc$list_watchlists(
DomainId = "string",
MaxResults = 123,
NextToken = "string"
)