Class: Aws::Pinpoint::Types::WriteSegmentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::WriteSegmentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass WriteSegmentRequest data as a hash:
{
dimensions: {
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"],
},
},
},
name: "__string",
}
Segment definition.
Instance Attribute Summary collapse
-
#dimensions ⇒ Types::SegmentDimensions
The segment dimensions attributes.
-
#name ⇒ String
The name of segment.
Instance Attribute Details
#dimensions ⇒ Types::SegmentDimensions
The segment dimensions attributes.
5349 5350 5351 5352 5353 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5349 class WriteSegmentRequest < Struct.new( :dimensions, :name) include Aws::Structure end |
#name ⇒ String
The name of segment
5349 5350 5351 5352 5353 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5349 class WriteSegmentRequest < Struct.new( :dimensions, :name) include Aws::Structure end |