Class: Aws::Pinpoint::Types::WaitActivity

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

Overview

Specifies the settings for a wait activity in a journey. This type of activity waits for a certain amount of time or until a specific date and time before moving participants to the next 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 performing the wait activity.

Returns:

  • (String)


13529
13530
13531
13532
13533
13534
# File 'lib/aws-sdk-pinpoint/types.rb', line 13529

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

#wait_timeTypes::WaitTime

The amount of time to wait or the date and time when the activity moves participants to the next activity in the journey.

Returns:



13529
13530
13531
13532
13533
13534
# File 'lib/aws-sdk-pinpoint/types.rb', line 13529

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