Class: Aws::CustomerProfiles::Types::ProfileTypeDimension

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

Overview

Object to hold the dimension of a profile type field to segment on.

Constant Summary collapse

SENSITIVE =
[:values]

Instance Attribute Summary collapse

Instance Attribute Details

#dimension_typeString

The action to segment on.

Returns:

  • (String)


6567
6568
6569
6570
6571
6572
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 6567

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

#valuesArray<String>

The values to apply the DimensionType on.

Returns:

  • (Array<String>)


6567
6568
6569
6570
6571
6572
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 6567

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