:doc:`CustomerProfiles <../../customer-profiles>` / Client / list_recommender_recipes

************************
list_recommender_recipes
************************



.. py:method:: CustomerProfiles.Client.list_recommender_recipes(**kwargs)

  

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

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListRecommenderRecipes>`_  


  **Request Syntax**
  ::

    response = client.list_recommender_recipes(
        MaxResults=123,
        NextToken='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: 

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

    

  
  :type NextToken: string
  :param NextToken: 

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

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'NextToken': 'string',
          'RecommenderRecipes': [
              {
                  'name': 'recommended-for-you'|'similar-items'|'frequently-paired-items'|'popular-items'|'trending-now',
                  'description': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **NextToken** *(string) --* 

        A token to retrieve the next page of results. Null if there are no more results to retrieve.

        
      

      - **RecommenderRecipes** *(list) --* 

        A list of available recommender recipes and their properties.

        
        

        - *(dict) --* 

          Defines the algorithm and approach used to generate recommendations.

          
          

          - **name** *(string) --* 

            The name of the recommender recipe.

            
          

          - **description** *(string) --* 

            A description of the recommender recipe's purpose and functionality.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CustomerProfiles.Client.exceptions.InternalServerException`

  
  *   :py:class:`CustomerProfiles.Client.exceptions.BadRequestException`

  
  *   :py:class:`CustomerProfiles.Client.exceptions.ThrottlingException`

  
  *   :py:class:`CustomerProfiles.Client.exceptions.AccessDeniedException`

  