List Watchlists
| voiceid_list_watchlists | R Documentation |
Lists all watchlists in a specified domain¶
Description¶
Lists all watchlists in a specified domain.
Usage¶
Arguments¶
DomainId[required] The identifier of the domain.
MaxResultsThe maximum number of results that are returned per call. You can use
NextTokento obtain more pages of results. The default is 100; the maximum allowed page size is also 100.NextTokenIf
NextTokenis returned, there are more results available. The value ofNextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.
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"
)
)
)