calculated_attributes_for_profiles
Creates, updates, deletes, gets or lists a calculated_attributes_for_profiles resource.
Overview
| Name | calculated_attributes_for_profiles |
| Type | Resource |
| Id | aws.customer_profiles.calculated_attributes_for_profiles |
Fields
The following fields are returned by SELECT queries:
- list_calculated_attributes_for_profile
| Name | Datatype | Description |
|---|---|---|
items | array | The list of calculated attributes. |
next_token | string | The pagination token from the previous call to ListCalculatedAttributesForProfile. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_calculated_attributes_for_profile | select | domain_name, profile_id, region | next-token, max-results | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
domain_name | string | The unique name of the domain. |
profile_id | string | The unique identifier of a customer profile. |
region | string | AWS region (default: us-east-1) |
max-results | integer | The maximum number of calculated attributes returned per page. |
next-token | string | The pagination token from the previous call to ListCalculatedAttributesForProfile. |
SELECT examples
- list_calculated_attributes_for_profile
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 }}'
;