Class: Aws::CustomerProfiles::Types::ProfileDimension

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb

Overview

Object to hold the dimensions of a profile's fields to segment on.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dimension_typeString

The action to segment on.

Returns:

  • (String)


8489
8490
8491
8492
8493
8494
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 8489

class ProfileDimension < Struct.new(
  :dimension_type,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The values to apply the DimensionType on. To reference a calculated attribute or profile attribute as a dynamic value, use handlebar notation: {{_profile.ProfileAttributeName}} or {{_calculated_attribute.CalculatedAttributeName}}.

Returns:

  • (Array<String>)


8489
8490
8491
8492
8493
8494
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 8489

class ProfileDimension < Struct.new(
  :dimension_type,
  :values)
  SENSITIVE = []
  include Aws::Structure
end