Class: Aws::SES::Types::GetSendQuotaResponse

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

Overview

Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.

Instance Attribute Summary collapse

Instance Attribute Details

#max_24_hour_sendFloat

The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.

Returns:

  • (Float)


2066
2067
2068
2069
2070
2071
# File 'lib/aws-sdk-ses/types.rb', line 2066

class GetSendQuotaResponse < Struct.new(
  :max_24_hour_send,
  :max_send_rate,
  :sent_last_24_hours)
  include Aws::Structure
end

#max_send_rateFloat

The maximum number of emails that Amazon SES can accept from the user’s account per second.

<note markdown=“1”> The rate at which Amazon SES accepts the user’s messages might be less than the maximum send rate.

</note>

Returns:

  • (Float)


2066
2067
2068
2069
2070
2071
# File 'lib/aws-sdk-ses/types.rb', line 2066

class GetSendQuotaResponse < Struct.new(
  :max_24_hour_send,
  :max_send_rate,
  :sent_last_24_hours)
  include Aws::Structure
end

#sent_last_24_hoursFloat

The number of emails sent during the previous 24 hours.

Returns:

  • (Float)


2066
2067
2068
2069
2070
2071
# File 'lib/aws-sdk-ses/types.rb', line 2066

class GetSendQuotaResponse < Struct.new(
  :max_24_hour_send,
  :max_send_rate,
  :sent_last_24_hours)
  include Aws::Structure
end