Class: Aws::Pinpoint::Types::WaitActivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::WaitActivity
- Defined in:
- gems/aws-sdk-pinpoint/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
20441 20442 20443 20444 20445 20446 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 20441 class WaitActivity < Struct.new( :next_activity, :wait_time) SENSITIVE = [] 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.
20441 20442 20443 20444 20445 20446 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 20441 class WaitActivity < Struct.new( :next_activity, :wait_time) SENSITIVE = [] include Aws::Structure end |