Class: Aws::Pinpoint::Types::ConditionalSplitActivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::ConditionalSplitActivity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies the settings for a yes/no split activity in a journey. This type of activity sends participants down one of two paths in a journey, based on conditions that you specify.
<note markdown=“1”>To create yes/no 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
-
#condition ⇒ Types::Condition
The conditions that define the paths for the activity, and the relationship between the conditions.
-
#evaluation_wait_time ⇒ Types::WaitTime
The amount of time to wait before determining whether the conditions are met, or the date and time when Amazon Pinpoint determines whether the conditions are met.
-
#false_activity ⇒ String
The unique identifier for the activity to perform if the conditions aren’t met.
-
#true_activity ⇒ String
The unique identifier for the activity to perform if the conditions are met.
Instance Attribute Details
#condition ⇒ Types::Condition
The conditions that define the paths for the activity, and the relationship between the conditions.
2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2605 class ConditionalSplitActivity < Struct.new( :condition, :evaluation_wait_time, :false_activity, :true_activity) SENSITIVE = [] include Aws::Structure end |
#evaluation_wait_time ⇒ Types::WaitTime
The amount of time to wait before determining whether the conditions are met, or the date and time when Amazon Pinpoint determines whether the conditions are met.
2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2605 class ConditionalSplitActivity < Struct.new( :condition, :evaluation_wait_time, :false_activity, :true_activity) SENSITIVE = [] include Aws::Structure end |
#false_activity ⇒ String
The unique identifier for the activity to perform if the conditions aren’t met.
2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2605 class ConditionalSplitActivity < Struct.new( :condition, :evaluation_wait_time, :false_activity, :true_activity) SENSITIVE = [] include Aws::Structure end |
#true_activity ⇒ String
The unique identifier for the activity to perform if the conditions are met.
2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2605 class ConditionalSplitActivity < Struct.new( :condition, :evaluation_wait_time, :false_activity, :true_activity) SENSITIVE = [] include Aws::Structure end |