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)


1204
1205
1206
1207
1208
# File 'lib/aws-sdk-pinpoint/types.rb', line 1204

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

#valuesArray<String>

The criteria values for the segment dimension. Endpoints with matching attribute values are included or excluded from the segment, depending on the setting for Type.

Returns:

  • (Array<String>)


1204
1205
1206
1207
1208
# File 'lib/aws-sdk-pinpoint/types.rb', line 1204

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