Class: Aws::Pinpoint::Types::WaitActivity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::WaitActivity
- 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
-
#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.
13582 13583 13584 13585 13586 13587 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 13582 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.
13582 13583 13584 13585 13586 13587 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 13582 class WaitActivity < Struct.new( :next_activity, :wait_time) SENSITIVE = [] include Aws::Structure end |