List Calculated Attribute Definitions
customerprofiles_list_calculated_attribute_definitions | R Documentation |
Lists calculated attribute definitions for Customer Profiles¶
Description¶
Lists calculated attribute definitions for Customer Profiles
Usage¶
customerprofiles_list_calculated_attribute_definitions(DomainName,
NextToken, MaxResults)
Arguments¶
DomainName |
[required] The unique name of the domain. |
NextToken |
The pagination token from the previous call to ListCalculatedAttributeDefinitions. |
MaxResults |
The maximum number of calculated attribute definitions returned per page. |
Value¶
A list with the following syntax:
list(
Items = list(
list(
CalculatedAttributeName = "string",
DisplayName = "string",
Description = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_calculated_attribute_definitions(
DomainName = "string",
NextToken = "string",
MaxResults = 123
)