Skip to content

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

customerprofiles_get_calculated_attribute_definition(DomainName,
  CalculatedAttributeName)

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",
  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"
  )
)

Request syntax

svc$get_calculated_attribute_definition(
  DomainName = "string",
  CalculatedAttributeName = "string"
)