Class: Aws::Pinpoint::Types::MultiConditionalSplitActivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::MultiConditionalSplitActivity
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
When making an API call, you may pass MultiConditionalSplitActivity data as a hash:
{
branches: [
{
condition: {
event_condition: {
dimensions: {
attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE, CONTAINS, BEFORE, AFTER, BETWEEN, ON
values: ["__string"], # required
},
},
event_type: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
metrics: {
"__string" => {
comparison_operator: "__string", # required
value: 1.0, # required
},
},
},
message_activity: "__string",
},
segment_condition: {
segment_id: "__string", # required
},
segment_dimensions: {
attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE, CONTAINS, BEFORE, AFTER, BETWEEN, ON
values: ["__string"], # required
},
},
behavior: {
recency: {
duration: "HR_24", # required, accepts HR_24, DAY_7, DAY_14, DAY_30
recency_type: "ACTIVE", # required, accepts ACTIVE, INACTIVE
},
},
demographic: {
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
},
},
location: {
country: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
gps_point: {
coordinates: { # required
latitude: 1.0, # required
longitude: 1.0, # required
},
range_in_kilometers: 1.0,
},
},
metrics: {
"__string" => {
comparison_operator: "__string", # required
value: 1.0, # required
},
},
user_attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE, CONTAINS, BEFORE, AFTER, BETWEEN, ON
values: ["__string"], # required
},
},
},
},
next_activity: "__string",
},
],
default_activity: "__string",
evaluation_wait_time: {
wait_for: "__string",
wait_until: "__string",
},
}
Specifies the settings for a multivariate split activity in a journey. This type of activity sends participants down one of as many as five paths (including a default Else path) in a journey, based on conditions that you specify.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branches ⇒ Array<Types::MultiConditionalBranch>
The paths for the activity, including the conditions for entering each path and the activity to perform for each path.
-
#default_activity ⇒ String
The unique identifier for the activity to perform for participants who don't meet any of the conditions specified for other paths in the activity.
-
#evaluation_wait_time ⇒ Types::WaitTime
The amount of time to wait or the date and time when Amazon Pinpoint determines whether the conditions are met.
Instance Attribute Details
#branches ⇒ Array<Types::MultiConditionalBranch>
The paths for the activity, including the conditions for entering each path and the activity to perform for each path.
13479 13480 13481 13482 13483 13484 13485 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 13479 class MultiConditionalSplitActivity < Struct.new( :branches, :default_activity, :evaluation_wait_time) SENSITIVE = [] include Aws::Structure end |
#default_activity ⇒ String
The unique identifier for the activity to perform for participants who don't meet any of the conditions specified for other paths in the activity.
13479 13480 13481 13482 13483 13484 13485 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 13479 class MultiConditionalSplitActivity < Struct.new( :branches, :default_activity, :evaluation_wait_time) SENSITIVE = [] include Aws::Structure end |
#evaluation_wait_time ⇒ Types::WaitTime
The amount of time to wait or the date and time when Amazon Pinpoint determines whether the conditions are met.
13479 13480 13481 13482 13483 13484 13485 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 13479 class MultiConditionalSplitActivity < Struct.new( :branches, :default_activity, :evaluation_wait_time) SENSITIVE = [] include Aws::Structure end |