Describe Watchlist
voiceid_describe_watchlist | R Documentation |
Describes the specified watchlist¶
Description¶
Describes the specified watchlist.
Usage¶
voiceid_describe_watchlist(DomainId, WatchlistId)
Arguments¶
DomainId |
[required] The identifier of the domain that contains the watchlist. |
WatchlistId |
[required] The identifier of the watchlist that you are describing. |
Value¶
A list with the following syntax:
list(
Watchlist = 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$describe_watchlist(
DomainId = "string",
WatchlistId = "string"
)