Class: Aws::Pinpoint::Types::WaitActivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::WaitActivity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass WaitActivity data as a hash:
{
next_activity: "__string",
wait_time: {
wait_for: "__string",
wait_until: "__string",
},
}
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.
Instance Attribute Summary collapse
-
#next_activity ⇒ String
The unique identifier for the next activity to perform, after performing the wait activity.
-
#wait_time ⇒ Types::WaitTime
The amount of time to wait or the date and time when the activity moves participants to the next activity in the journey.
Instance Attribute Details
#next_activity ⇒ String
The unique identifier for the next activity to perform, after performing the wait activity.
17430 17431 17432 17433 17434 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17430 class WaitActivity < Struct.new( :next_activity, :wait_time) include Aws::Structure end |
#wait_time ⇒ Types::WaitTime
The amount of time to wait or the date and time when the activity moves participants to the next activity in the journey.
17430 17431 17432 17433 17434 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17430 class WaitActivity < Struct.new( :next_activity, :wait_time) include Aws::Structure end |