AWSPinpointTargetingMultiConditionalSplitActivity
Objective-C
@interface AWSPinpointTargetingMultiConditionalSplitActivity
Swift
class AWSPinpointTargetingMultiConditionalSplitActivity
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.
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.
-
The paths for the activity, including the conditions for entering each path and the activity to perform for each path.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSPinpointTargetingMultiConditionalBranch *> *_Nullable branches;
Swift
var branches: [AWSPinpointTargetingMultiConditionalBranch]? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable defaultActivity;
Swift
var defaultActivity: String? { get set }
-
The amount of time to wait or the date and time when Amazon Pinpoint determines whether the conditions are met.
Declaration
Objective-C
@property (nonatomic, strong) AWSPinpointTargetingWaitTime *_Nullable evaluationWaitTime;
Swift
var evaluationWaitTime: AWSPinpointTargetingWaitTime? { get set }