Skip to content

List Recommender Filters

customerprofiles_list_recommender_filters R Documentation

Returns a list of recommender filters in the specified domain

Description

Returns a list of recommender filters in the specified domain.

Usage

customerprofiles_list_recommender_filters(DomainName, MaxResults,
  NextToken)

Arguments

DomainName

[required] The unique name of the domain.

MaxResults

The maximum number of recommender filters to return in the response. The default value is 100.

NextToken

A token received from a previous ListRecommenderFilters call to retrieve the next page of results.

Value

A list with the following syntax:

list(
  NextToken = "string",
  RecommenderFilters = list(
    list(
      RecommenderFilterName = "string",
      RecommenderSchemaName = "string",
      RecommenderFilterExpression = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Description = "string",
      Status = "ACTIVE"|"PENDING"|"IN_PROGRESS"|"FAILED"|"DELETING",
      FailureReason = "string",
      Tags = list(
        "string"
      )
    )
  )
)

Request syntax

svc$list_recommender_filters(
  DomainName = "string",
  MaxResults = 123,
  NextToken = "string"
)