Skip to main content

profile_attribute_values

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

Overview

Nameprofile_attribute_values
TypeResource
Idaws.customer_profiles.profile_attribute_values

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attribute_namestringThe attribute name.
domain_namestringThe name of the domain. (pattern: <code>^[a-zA-Z0-9_-]+$</code>)
itemsarrayThe items returned as part of the response.
status_codeintegerThe status code for the response.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_profile_attribute_valuesselectdomain_name, attribute_name, regionFetch the possible attribute values given the attribute name.

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
attribute_namestringThe attribute name.
domain_namestringThe unique identifier of the domain.
regionstringAWS region (default: us-east-1)

SELECT examples

Fetch the possible attribute values given the attribute name.

SELECT
attribute_name,
domain_name,
items,
status_code
FROM aws.customer_profiles.profile_attribute_values
WHERE domain_name = '{{ domain_name }}' -- required
AND attribute_name = '{{ attribute_name }}' -- required
AND region = '{{ region }}' -- required
;