Class: Aws::Pinpoint::Types::SegmentDemographics
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SegmentDemographics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
When making an API call, you may pass SegmentDemographics data as a hash:
{
app_version: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
channel: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
device_type: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
make: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
model: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
platform: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
}
Specifies demographic-based dimension settings for including or excluding endpoints from a segment. These settings derive from characteristics of endpoint devices, such as platform, make, and model.
Instance Attribute Summary collapse
-
#app_version ⇒ Types::SetDimension
The app version criteria for the segment.
-
#channel ⇒ Types::SetDimension
The channel criteria for the segment.
-
#device_type ⇒ Types::SetDimension
The device type criteria for the segment.
-
#make ⇒ Types::SetDimension
The device make criteria for the segment.
-
#model ⇒ Types::SetDimension
The device model criteria for the segment.
-
#platform ⇒ Types::SetDimension
The device platform criteria for the segment.
Instance Attribute Details
#app_version ⇒ Types::SetDimension
The app version criteria for the segment.
12997 12998 12999 13000 13001 13002 13003 13004 13005 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12997 class SegmentDemographics < Struct.new( :app_version, :channel, :device_type, :make, :model, :platform) include Aws::Structure end |
#channel ⇒ Types::SetDimension
The channel criteria for the segment.
12997 12998 12999 13000 13001 13002 13003 13004 13005 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12997 class SegmentDemographics < Struct.new( :app_version, :channel, :device_type, :make, :model, :platform) include Aws::Structure end |
#device_type ⇒ Types::SetDimension
The device type criteria for the segment.
12997 12998 12999 13000 13001 13002 13003 13004 13005 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12997 class SegmentDemographics < Struct.new( :app_version, :channel, :device_type, :make, :model, :platform) include Aws::Structure end |
#make ⇒ Types::SetDimension
The device make criteria for the segment.
12997 12998 12999 13000 13001 13002 13003 13004 13005 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12997 class SegmentDemographics < Struct.new( :app_version, :channel, :device_type, :make, :model, :platform) include Aws::Structure end |
#model ⇒ Types::SetDimension
The device model criteria for the segment.
12997 12998 12999 13000 13001 13002 13003 13004 13005 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12997 class SegmentDemographics < Struct.new( :app_version, :channel, :device_type, :make, :model, :platform) include Aws::Structure end |
#platform ⇒ Types::SetDimension
The device platform criteria for the segment.
12997 12998 12999 13000 13001 13002 13003 13004 13005 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12997 class SegmentDemographics < Struct.new( :app_version, :channel, :device_type, :make, :model, :platform) include Aws::Structure end |