object_type_attribute_values
Creates, updates, deletes, gets or lists an object_type_attribute_values resource.
Overview
| Name | object_type_attribute_values |
| Type | Resource |
| Id | aws.customer_profiles.object_type_attribute_values |
Fields
The following fields are returned by SELECT queries:
- list_object_type_attribute_values
| Name | Datatype | Description |
|---|---|---|
items | array | A list of unique attribute values sorted on the basis of LastUpdatedAt. |
next_token | string | The pagination token from the previous call to call ListObjectTypeAttributeValues. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_object_type_attribute_values | select | domain_name, object_type_name, attribute_name, region | next-token, max-results | The ListObjectTypeAttributeValues API provides access to the most recent distinct values for any specified attribute, making it valuable for real-time data validation and consistency checks within your object types. This API works across domain, supporting both custom and standard object types. The API accepts the object type name, attribute name, and domain name as input parameters and returns values up to the storage limit of approximately 350KB. |
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 |
|---|---|---|
attribute_name | string | The attribute name. |
domain_name | string | The unique name of the domain. |
object_type_name | string | The unique name of the domain object type. |
region | string | AWS region (default: us-east-1) |
max-results | integer | The maximum number of objects returned per page. Valid Range: Minimum value of 1. Maximum value of 100. If not provided default as 100. |
next-token | string | The pagination token from the previous call. |
SELECT examples
- list_object_type_attribute_values
The ListObjectTypeAttributeValues API provides access to the most recent distinct values for any specified attribute, making it valuable for real-time data validation and consistency checks within your object types. This API works across domain, supporting both custom and standard object types. The API accepts the object type name, attribute name, and domain name as input parameters and returns values up to the storage limit of approximately 350KB.
SELECT
items,
next_token
FROM aws.customer_profiles.object_type_attribute_values
WHERE domain_name = '{{ domain_name }}' -- required
AND object_type_name = '{{ object_type_name }}' -- required
AND attribute_name = '{{ attribute_name }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;