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 default end time for quiet time in ISO 8601 format.

Returns:

  • (String)


5750
5751
5752
5753
5754
# File 'lib/aws-sdk-pinpoint/types.rb', line 5750

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

#startString

The default start time for quiet time in ISO 8601 format.

Returns:

  • (String)


5750
5751
5752
5753
5754
# File 'lib/aws-sdk-pinpoint/types.rb', line 5750

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