Skip to main content

object_type_attributes

Creates, updates, deletes, gets or lists an object_type_attributes resource.

Overview

Nameobject_type_attributes
TypeResource
Idaws.customer_profiles.object_type_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attribute_namestringName of the attribute. (pattern: <code>^[a-zA-Z0-9_-]+$</code>)
last_updated_atstring (date-time)When the attribute was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_object_type_attributesselectdomain_name, object_type_name, regionnext-token, max-resultsFetch 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
domain_namestringThe unique identifier of the domain.
object_type_namestringThe name of the profile object type.
regionstringAWS region (default: us-east-1)
max-resultsintegerThe maximum number of objects returned per page.
next-tokenstringThe pagination token from the previous call.

SELECT examples

Fetch the possible attribute values given the attribute name.

SELECT
attribute_name,
last_updated_at
FROM aws.customer_profiles.object_type_attributes
WHERE domain_name = '{{ domain_name }}' -- required
AND object_type_name = '{{ object_type_name }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;