Class: Aws::Pinpoint::Types::RandomSplitEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::RandomSplitEntry
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
When making an API call, you may pass RandomSplitEntry data as a hash:
{
next_activity: "__string",
percentage: 1,
}
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.
14380 14381 14382 14383 14384 14385 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 14380 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.
14380 14381 14382 14383 14384 14385 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 14380 class RandomSplitEntry < Struct.new( :next_activity, :percentage) SENSITIVE = [] include Aws::Structure end |