Skip to main content

calculated_attributes_for_profiles

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

Overview

Namecalculated_attributes_for_profiles
TypeResource
Idaws.customer_profiles.calculated_attributes_for_profiles

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
itemsarrayThe list of calculated attributes.
next_tokenstringThe pagination token from the previous call to ListCalculatedAttributesForProfile.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_calculated_attributes_for_profileselectdomain_name, profile_id, regionnext-token, max-resultsRetrieve a list of calculated attributes for a customer profile.

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 a customer profile.
regionstringAWS region (default: us-east-1)
max-resultsintegerThe maximum number of calculated attributes returned per page.
next-tokenstringThe pagination token from the previous call to ListCalculatedAttributesForProfile.

SELECT examples

Retrieve a list of calculated attributes for a customer profile.

SELECT
items,
next_token
FROM aws.customer_profiles.calculated_attributes_for_profiles
WHERE domain_name = '{{ domain_name }}' -- required
AND profile_id = '{{ profile_id }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;