Class: Aws::Pinpoint::Types::SetDimension

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 SetDimension data as a hash:

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

Dimension specification of a segment.

Instance Attribute Summary collapse

Instance Attribute Details

#dimension_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)


9071
9072
9073
9074
9075
# File 'lib/aws-sdk-pinpoint/types.rb', line 9071

class SetDimension < Struct.new(
  :dimension_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>)


9071
9072
9073
9074
9075
# File 'lib/aws-sdk-pinpoint/types.rb', line 9071

class SetDimension < Struct.new(
  :dimension_type,
  :values)
  include Aws::Structure
end