recommender_recipes
Creates, updates, deletes, gets or lists a recommender_recipes resource.
Overview
| Name | recommender_recipes |
| Type | Resource |
| Id | aws.customer_profiles.recommender_recipes |
Fields
The following fields are returned by SELECT queries:
- list_recommender_recipes
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the recommender recipe. (recommended-for-you, similar-items, frequently-paired-items, popular-items, trending-now, personalized-ranking) |
description | string | A description of the recommender recipe's purpose and functionality. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_recommender_recipes | select | region | max-results, next-token | Returns a list of available recommender recipes that can be used to create recommenders. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
max-results | integer | The maximum number of recommender recipes to return in the response. The default value is 100. |
next-token | string | A token received from a previous ListRecommenderRecipes call to retrieve the next page of results. |
SELECT examples
- list_recommender_recipes
Returns a list of available recommender recipes that can be used to create recommenders.
SELECT
name,
description
FROM aws.customer_profiles.recommender_recipes
WHERE region = '{{ region }}' -- required
AND `max-results` = '{{ max-results }}'
AND `next-token` = '{{ next-token }}'
;