Skip to content

List Filters

personalize_list_filters R Documentation

Lists all filters that belong to a given dataset group

Description

Lists all filters that belong to a given dataset group.

Usage

personalize_list_filters(datasetGroupArn, nextToken, maxResults)

Arguments

datasetGroupArn

The ARN of the dataset group that contains the filters.

nextToken

A token returned from the previous call to list_filters for getting the next set of filters (if they exist).

maxResults

The maximum number of filters to return.

Value

A list with the following syntax:

list(
  Filters = list(
    list(
      name = "string",
      filterArn = "string",
      creationDateTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedDateTime = as.POSIXct(
        "2015-01-01"
      ),
      datasetGroupArn = "string",
      failureReason = "string",
      status = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_filters(
  datasetGroupArn = "string",
  nextToken = "string",
  maxResults = 123
)