Class: Aws::Pinpoint::Types::RandomSplitActivity

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass RandomSplitActivity data as a hash:

{
  branches: [
    {
      next_activity: "__string",
      percentage: 1,
    },
  ],
}

Specifies the settings for a random split activity in a journey. This type of activity randomly sends specified percentages of participants down one of as many as five paths in a journey, based on conditions that you specify.

Instance Attribute Summary collapse

Instance Attribute Details

#branchesArray<Types::RandomSplitEntry>

The paths for the activity, including the percentage of participants to enter each path and the activity to perform for each path.

Returns:



12148
12149
12150
12151
# File 'lib/aws-sdk-pinpoint/types.rb', line 12148

class RandomSplitActivity < Struct.new(
  :branches)
  include Aws::Structure
end