Skip to main content

profile_recommendations

Creates, updates, deletes, gets or lists a profile_recommendations resource.

Overview

Nameprofile_recommendations
TypeResource
Idaws.customer_profiles.profile_recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
recommendationsarrayList of recommendations generated by the recommender.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_profile_recommendationsselectdomain_name, profile_id, regionFetches the recommendations for a profile in the input Customer Profiles domain. Fetches all the profile recommendations

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.

NameDatatypeDescription
domain_namestringThe unique name of the domain.
profile_idstringThe unique identifier of the profile for which to retrieve recommendations.
regionstringAWS region (default: us-east-1)

SELECT examples

Fetches the recommendations for a profile in the input Customer Profiles domain. Fetches all the profile recommendations

SELECT
recommendations
FROM aws.customer_profiles.profile_recommendations
WHERE domain_name = '{{ domain_name }}' -- required
AND profile_id = '{{ profile_id }}' -- required
AND region = '{{ region }}' -- required
;