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

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

Overview

Specifies the dimension type and values for a segment dimension.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dimension_typeString

The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.

Returns:

  • (String)


11660
11661
11662
11663
11664
11665
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 11660

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

#valuesArray<String>

The criteria values to use for the segment dimension. Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.

Returns:

  • (Array<String>)


11660
11661
11662
11663
11664
11665
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 11660

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