Class: Aws::Pinpoint::Types::RandomSplitEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::RandomSplitEntry
- 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
-
#next_activity ⇒ String
The unique identifier for the next activity to perform, after completing the activity for the path.
-
#percentage ⇒ Integer
The percentage of participants to send down the activity path.
Instance Attribute Details
#next_activity ⇒ String
The unique identifier for the next activity to perform, after completing the activity for the path.
10328 10329 10330 10331 10332 10333 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10328 class RandomSplitEntry < Struct.new( :next_activity, :percentage) SENSITIVE = [] include Aws::Structure end |
#percentage ⇒ Integer
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.
10328 10329 10330 10331 10332 10333 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 10328 class RandomSplitEntry < Struct.new( :next_activity, :percentage) SENSITIVE = [] include Aws::Structure end |