Class: Aws::Pinpoint::Types::SetDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SetDimension
- Includes:
- Structure
- Defined in:
- 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
-
#dimension_type ⇒ String
The type of segment dimension to use.
-
#values ⇒ Array<String>
The criteria values to use for the segment dimension.
Instance Attribute Details
#dimension_type ⇒ String
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.
11691 11692 11693 11694 11695 11696 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11691 class SetDimension < Struct.new( :dimension_type, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<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.
11691 11692 11693 11694 11695 11696 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11691 class SetDimension < Struct.new( :dimension_type, :values) SENSITIVE = [] include Aws::Structure end |