Interface RandomSplitEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RandomSplitEntry.Builder,RandomSplitEntry>,SdkBuilder<RandomSplitEntry.Builder,RandomSplitEntry>,SdkPojo
- Enclosing class:
- RandomSplitEntry
public static interface RandomSplitEntry.Builder extends SdkPojo, CopyableBuilder<RandomSplitEntry.Builder,RandomSplitEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RandomSplitEntry.BuildernextActivity(String nextActivity)The unique identifier for the next activity to perform, after completing the activity for the path.RandomSplitEntry.Builderpercentage(Integer percentage)The percentage of participants to send down the activity path.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
nextActivity
RandomSplitEntry.Builder nextActivity(String nextActivity)
The unique identifier for the next activity to perform, after completing the activity for the path.
- Parameters:
nextActivity- The unique identifier for the next activity to perform, after completing the activity for the path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
percentage
RandomSplitEntry.Builder percentage(Integer percentage)
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.
- Parameters:
percentage- 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:
- Returns a reference to this object so that method calls can be chained together.
-
-