Skip to content

List Calculated Attributes for Profile

customerprofiles_list_calculated_attributes_for_profile R Documentation

Retrieve a list of calculated attributes for a customer profile

Description

Retrieve a list of calculated attributes for a customer profile.

Usage

customerprofiles_list_calculated_attributes_for_profile(NextToken,
  MaxResults, DomainName, ProfileId)

Arguments

NextToken

The pagination token from the previous call to ListCalculatedAttributesForProfile.

MaxResults

The maximum number of calculated attributes returned per page.

DomainName

[required] The unique name of the domain.

ProfileId

[required] The unique identifier of a customer profile.

Value

A list with the following syntax:

list(
  Items = list(
    list(
      CalculatedAttributeName = "string",
      DisplayName = "string",
      IsDataPartial = "string",
      Value = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_calculated_attributes_for_profile(
  NextToken = "string",
  MaxResults = 123,
  DomainName = "string",
  ProfileId = "string"
)