Class: Aws::Pinpoint::Types::RandomSplitEntry

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

Overview

Specifies the settings for a path in a random split activity in a journey.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_activityString

The unique identifier for the next activity to perform, after completing the activity for the path.

Returns:

  • (String)


10329
10330
10331
10332
10333
10334
# File 'lib/aws-sdk-pinpoint/types.rb', line 10329

class RandomSplitEntry < Struct.new(
  :next_activity,
  :percentage)
  SENSITIVE = []
  include Aws::Structure
end

#percentageInteger

The percentage of participants to send down the activity path.

To determine which participants are sent down each path, Amazon Pinpoint applies a probability-based algorithm to the percentages that you specify for the paths. Therefore, the actual percentage of participants who are sent down a path may not be equal to the percentage that you specify.

Returns:

  • (Integer)


10329
10330
10331
10332
10333
10334
# File 'lib/aws-sdk-pinpoint/types.rb', line 10329

class RandomSplitEntry < Struct.new(
  :next_activity,
  :percentage)
  SENSITIVE = []
  include Aws::Structure
end