Class: Aws::Pinpoint::Types::MultiConditionalSplitActivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::MultiConditionalSplitActivity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
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.
<note markdown=“1”>To create multivariate split activities that send participants down different paths based on push notification events (such as Open or Received events), your mobile app has to specify the User ID and Endpoint ID values. For more information, see [Integrating Amazon Pinpoint with your application] in the *Amazon Pinpoint Developer Guide*.
</note>
[1]: docs.aws.amazon.com/pinpoint/latest/developerguide/integrate.html
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.
9665 9666 9667 9668 9669 9670 9671 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9665 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.
9665 9666 9667 9668 9669 9670 9671 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9665 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.
9665 9666 9667 9668 9669 9670 9671 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9665 class MultiConditionalSplitActivity < Struct.new( :branches, :default_activity, :evaluation_wait_time) SENSITIVE = [] include Aws::Structure end |