Class: Aws::Pinpoint::Types::WaitTime

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

Overview

Note:

When making an API call, you may pass WaitTime data as a hash:

{
  wait_for: "__string",
  wait_until: "__string",
}

Specifies a duration or a date and time that indicates when Amazon Pinpoint determines whether an activity’s conditions have been met or an activity moves participants to the next activity in a journey.

Instance Attribute Summary collapse

Instance Attribute Details

#wait_forString

The amount of time to wait, as a duration in ISO 8601 format, before determining whether the activity’s conditions have been met or moving participants to the next activity in the journey.

Returns:

  • (String)


17462
17463
17464
17465
17466
# File 'lib/aws-sdk-pinpoint/types.rb', line 17462

class WaitTime < Struct.new(
  :wait_for,
  :wait_until)
  include Aws::Structure
end

#wait_untilString

The date and time, in ISO 8601 format, when Amazon Pinpoint determines whether the activity’s conditions have been met or the activity moves participants to the next activity in the journey.

Returns:

  • (String)


17462
17463
17464
17465
17466
# File 'lib/aws-sdk-pinpoint/types.rb', line 17462

class WaitTime < Struct.new(
  :wait_for,
  :wait_until)
  include Aws::Structure
end