Skip to content

Create Watchlist

voiceid_create_watchlist R Documentation

Creates a watchlist that fraudsters can be a part of

Description

Creates a watchlist that fraudsters can be a part of.

Usage

voiceid_create_watchlist(ClientToken, Description, DomainId, Name)

Arguments

ClientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

Description

A brief description of this watchlist.

DomainId

[required] The identifier of the domain that contains the watchlist.

Name

[required] The name of the watchlist.

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$create_watchlist(
  ClientToken = "string",
  Description = "string",
  DomainId = "string",
  Name = "string"
)