Class: Aws::Pinpoint::Types::AttributeDimension

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass AttributeDimension data as a hash:

{
  attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
  values: ["__string"],
}

Custom attibute dimension

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_typeString

The type of dimension: INCLUSIVE - Endpoints that match the criteria are included in the segment. EXCLUSIVE - Endpoints that match the criteria are excluded from the segment.

Returns:

  • (String)


1183
1184
1185
1186
1187
# File 'lib/aws-sdk-pinpoint/types.rb', line 1183

class AttributeDimension < Struct.new(
  :attribute_type,
  :values)
  include Aws::Structure
end

#valuesArray<String>

Returns:

  • (Array<String>)


1183
1184
1185
1186
1187
# File 'lib/aws-sdk-pinpoint/types.rb', line 1183

class AttributeDimension < Struct.new(
  :attribute_type,
  :values)
  include Aws::Structure
end