Class: Aws::Pinpoint::Types::SetDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SetDimension
- 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
-
#dimension_type ⇒ String
The type of dimension: INCLUSIVE - Endpoints that match the criteria are included in the segment.
- #values ⇒ Array<String>
Instance Attribute Details
#dimension_type ⇒ String
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.
4329 4330 4331 4332 4333 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4329 class SetDimension < Struct.new( :dimension_type, :values) include Aws::Structure end |
#values ⇒ Array<String>
4329 4330 4331 4332 4333 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4329 class SetDimension < Struct.new( :dimension_type, :values) include Aws::Structure end |