Get Calculated Attribute Definition
customerprofiles_get_calculated_attribute_definition | R Documentation |
Provides more information on a calculated attribute definition for Customer Profiles¶
Description¶
Provides more information on a calculated attribute definition for Customer Profiles.
Usage¶
Arguments¶
DomainName
[required] The unique name of the domain.
CalculatedAttributeName
[required] The unique name of the calculated attribute.
Value¶
A list with the following syntax:
list(
CalculatedAttributeName = "string",
DisplayName = "string",
Description = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Statistic = "FIRST_OCCURRENCE"|"LAST_OCCURRENCE"|"COUNT"|"SUM"|"MINIMUM"|"MAXIMUM"|"AVERAGE"|"MAX_OCCURRENCE",
Filter = list(
Include = "ALL"|"ANY"|"NONE",
Groups = list(
list(
Type = "ALL"|"ANY"|"NONE",
Dimensions = list(
list(
Attributes = list(
list(
DimensionType = "INCLUSIVE"|"EXCLUSIVE"|"CONTAINS"|"BEGINS_WITH"|"ENDS_WITH"|"BEFORE"|"AFTER"|"BETWEEN"|"NOT_BETWEEN"|"ON"|"GREATER_THAN"|"LESS_THAN"|"GREATER_THAN_OR_EQUAL"|"LESS_THAN_OR_EQUAL"|"EQUAL",
Values = list(
"string"
)
)
)
)
)
)
)
),
Conditions = list(
Range = list(
Value = 123,
Unit = "DAYS"
),
ObjectCount = 123,
Threshold = list(
Value = "string",
Operator = "EQUAL_TO"|"GREATER_THAN"|"LESS_THAN"|"NOT_EQUAL_TO"
)
),
AttributeDetails = list(
Attributes = list(
list(
Name = "string"
)
),
Expression = "string"
),
Tags = list(
"string"
)
)