aws.personalize_runtime.get_action_recommendations
Example SQL Queries
SELECT * FROMaws.personalize_runtime.get_action_recommendations;Description
Returns a list of recommended actions in sorted in descending order by prediction score. Use the GetActionRecommendations API if you have a custom campaign that deploys a solution version trained with a PERSONALIZED_ACTIONS recipe.
For more information about PERSONALIZED_ACTIONS recipes, see PERSONALIZED_ACTIONS recipes. For more information about getting action recommendations, see Getting action recommendations.
Table Definition
| Column Name | Column Data Type |
|---|---|
| campaign_arn Input Column The Amazon Resource Name (ARN) of the campaign to use for getting action recommendations. This campaign must deploy a solution version trained with a PERSONALIZED_ACTIONS recipe. | VARCHAR |
| filter_arn Input Column The ARN of the filter to apply to the returned recommendations. For more information, see Filtering Recommendations. When using this parameter, be sure the filter resource is ACTIVE. | VARCHAR |
| filter_values Input Column The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. For filter expressions that use an INCLUDE element to include actions, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an EXCLUDE element to exclude actions, you can omit the filter-values. In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations. For more information, see Filtering recommendations and user segments. | MAP(VARCHAR, VARCHAR) |
| num_results Input Column The number of results to return. The default is 5. The maximum is 100. | BIGINT |
| user_id Input Column The user ID of the user to provide action recommendations for. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| action_list A list of action recommendations sorted in descending order by prediction score. There can be a maximum of 100 actions in the list. For information about action scores, see How action recommendation scoring works. | STRUCT( |
Show child fields
| |
| recommendation_id The ID of the recommendation. | VARCHAR |