Class: Aws::Pinpoint::Types::SegmentDimensions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SegmentDimensions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass SegmentDimensions data as a hash:
{
attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
},
behavior: {
recency: {
duration: "HR_24", # accepts HR_24, DAY_7, DAY_14, DAY_30
recency_type: "ACTIVE", # accepts ACTIVE, INACTIVE
},
},
demographic: {
app_version: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
channel: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
device_type: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
make: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
model: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
platform: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
},
location: {
country: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
},
user_attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"],
},
},
}
Segment dimensions
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,Types::AttributeDimension>
Custom segment attributes.
-
#behavior ⇒ Types::SegmentBehaviors
The segment behaviors attributes.
-
#demographic ⇒ Types::SegmentDemographics
The segment demographics attributes.
-
#location ⇒ Types::SegmentLocation
The segment location attributes.
-
#user_attributes ⇒ Hash<String,Types::AttributeDimension>
Custom segment user attributes.
Instance Attribute Details
#attributes ⇒ Hash<String,Types::AttributeDimension>
Custom segment attributes.
4048 4049 4050 4051 4052 4053 4054 4055 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4048 class SegmentDimensions < Struct.new( :attributes, :behavior, :demographic, :location, :user_attributes) include Aws::Structure end |
#behavior ⇒ Types::SegmentBehaviors
The segment behaviors attributes.
4048 4049 4050 4051 4052 4053 4054 4055 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4048 class SegmentDimensions < Struct.new( :attributes, :behavior, :demographic, :location, :user_attributes) include Aws::Structure end |
#demographic ⇒ Types::SegmentDemographics
The segment demographics attributes.
4048 4049 4050 4051 4052 4053 4054 4055 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4048 class SegmentDimensions < Struct.new( :attributes, :behavior, :demographic, :location, :user_attributes) include Aws::Structure end |
#location ⇒ Types::SegmentLocation
The segment location attributes.
4048 4049 4050 4051 4052 4053 4054 4055 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4048 class SegmentDimensions < Struct.new( :attributes, :behavior, :demographic, :location, :user_attributes) include Aws::Structure end |
#user_attributes ⇒ Hash<String,Types::AttributeDimension>
Custom segment user attributes.
4048 4049 4050 4051 4052 4053 4054 4055 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4048 class SegmentDimensions < Struct.new( :attributes, :behavior, :demographic, :location, :user_attributes) include Aws::Structure end |