Class: Aws::Pinpoint::Types::QuietTime

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 QuietTime data as a hash:

{
  end: "__string",
  start: "__string",
}

Quiet Time

Instance Attribute Summary collapse

Instance Attribute Details

#endString

The time at which quiet time should end. The value that you specify has to be in HH:mm format, where HH is the hour in 24-hour format (with a leading zero, if applicable), and mm is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM.

Returns:

  • (String)


7360
7361
7362
7363
7364
# File 'lib/aws-sdk-pinpoint/types.rb', line 7360

class QuietTime < Struct.new(
  :end,
  :start)
  include Aws::Structure
end

#startString

The time at which quiet time should begin. The value that you specify has to be in HH:mm format, where HH is the hour in 24-hour format (with a leading zero, if applicable), and mm is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM.

Returns:

  • (String)


7360
7361
7362
7363
7364
# File 'lib/aws-sdk-pinpoint/types.rb', line 7360

class QuietTime < Struct.new(
  :end,
  :start)
  include Aws::Structure
end