Class: Aws::Pinpoint::Types::HoldoutActivity

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

Overview

Specifies the settings for a holdout activity in a journey. This type of activity stops a journey for a specified percentage of participants.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_activityString

The unique identifier for the next activity to perform, after performing the holdout activity.

Returns:

  • (String)


7529
7530
7531
7532
7533
7534
# File 'lib/aws-sdk-pinpoint/types.rb', line 7529

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

#percentageInteger

The percentage of participants who shouldn’t continue the journey.

To determine which participants are held out, Amazon Pinpoint applies a probability-based algorithm to the percentage that you specify. Therefore, the actual percentage of participants who are held out may not be equal to the percentage that you specify.

Returns:

  • (Integer)


7529
7530
7531
7532
7533
7534
# File 'lib/aws-sdk-pinpoint/types.rb', line 7529

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