Skip to content

Get List Elements

frauddetector_get_list_elements R Documentation

Gets all the elements in the specified list

Description

Gets all the elements in the specified list.

Usage

frauddetector_get_list_elements(name, nextToken, maxResults)

Arguments

name

[required] The name of the list.

nextToken

The next token for the subsequent request.

maxResults

The maximum number of objects to return for the request.

Value

A list with the following syntax:

list(
  elements = list(
    "string"
  ),
  nextToken = "string"
)

Request syntax

svc$get_list_elements(
  name = "string",
  nextToken = "string",
  maxResults = 123
)