Class: Aws::CustomerProfiles::Types::AttributeDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::AttributeDimension
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
Object that segments on various Customer Profile's fields.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dimension_type ⇒ String
The action to segment with.
-
#values ⇒ Array<String>
The values to apply the DimensionType on.
Instance Attribute Details
#dimension_type ⇒ String
The action to segment with.
444 445 446 447 448 449 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 444 class AttributeDimension < Struct.new( :dimension_type, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<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}}.
444 445 446 447 448 449 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 444 class AttributeDimension < Struct.new( :dimension_type, :values) SENSITIVE = [] include Aws::Structure end |