object_type_attributes
Creates, updates, deletes, gets or lists an object_type_attributes resource.
Overview
| Name | object_type_attributes |
| Type | Resource |
| Id | aws.customer_profiles.object_type_attributes |
Fields
The following fields are returned by SELECT queries:
- list_object_type_attributes
| Name | Datatype | Description |
|---|---|---|
attribute_name | string | Name of the attribute. (pattern: <code>^[a-zA-Z0-9_-]+$</code>) |
last_updated_at | string (date-time) | When the attribute was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_object_type_attributes | select | domain_name, object_type_name, region | next-token, max-results | Fetch 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.
| Name | Datatype | Description |
|---|---|---|
domain_name | string | The unique identifier of the domain. |
object_type_name | string | The name of the profile object type. |
region | string | AWS region (default: us-east-1) |
max-results | integer | The maximum number of objects returned per page. |
next-token | string | The pagination token from the previous call. |
SELECT examples
- list_object_type_attributes
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 }}'
;