Skip to content

List Recommender Recipes

customerprofiles_list_recommender_recipes R Documentation

Returns a list of available recommender recipes that can be used to create recommenders

Description

Returns a list of available recommender recipes that can be used to create recommenders.

Usage

customerprofiles_list_recommender_recipes(MaxResults, NextToken)

Arguments

MaxResults

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

NextToken

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

Value

A list with the following syntax:

list(
  NextToken = "string",
  RecommenderRecipes = list(
    list(
      name = "recommended-for-you"|"similar-items"|"frequently-paired-items"|"popular-items"|"trending-now"|"personalized-ranking",
      description = "string"
    )
  )
)

Request syntax

svc$list_recommender_recipes(
  MaxResults = 123,
  NextToken = "string"
)