Skip to main content

object_type_attribute_statistics

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

Overview

Nameobject_type_attribute_statistics
TypeResource
Idaws.customer_profiles.object_type_attribute_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
calculated_atstring (date-time)Time when this statistics was calculated.
statisticsobjectThe statistics.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_object_type_attribute_statisticsselectdomain_name, object_type_name, attribute_name, regionThe GetObjectTypeAttributeValues API delivers statistical insights about attributes within a specific object type, but is exclusively available for domains with data store enabled. This API performs daily calculations to provide statistical information about your attribute values, helping you understand patterns and trends in your data. The statistical calculations are performed once per day, providing a consistent snapshot of your attribute data characteristics. You'll receive null values in two scenarios: During the first period after enabling data vault (unless a calculation cycle occurs, which happens once daily). For attributes that don't contain numeric values.

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 name of the domain.
object_type_namestringThe unique name of the domain object type.
regionstringAWS region (default: us-east-1)

SELECT examples

The GetObjectTypeAttributeValues API delivers statistical insights about attributes within a specific object type, but is exclusively available for domains with data store enabled. This API performs daily calculations to provide statistical information about your attribute values, helping you understand patterns and trends in your data. The statistical calculations are performed once per day, providing a consistent snapshot of your attribute data characteristics. You'll receive null values in two scenarios: During the first period after enabling data vault (unless a calculation cycle occurs, which happens once daily). For attributes that don't contain numeric values.

SELECT
calculated_at,
statistics
FROM aws.customer_profiles.object_type_attribute_statistics
WHERE domain_name = '{{ domain_name }}' -- required
AND object_type_name = '{{ object_type_name }}' -- required
AND attribute_name = '{{ attribute_name }}' -- required
AND region = '{{ region }}' -- required
;