Class: Aws::PinpointEmail::Types::SendQuota

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

Overview

An object that contains information about the per-day and per-second sending limits for your Amazon Pinpoint account in the current AWS Region.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_24_hour_sendFloat

The maximum number of emails that you can send in the current AWS Region over a 24-hour period. This value is also called your *sending quota*.

Returns:

  • (Float)


2856
2857
2858
2859
2860
2861
2862
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2856

class SendQuota < Struct.new(
  :max_24_hour_send,
  :max_send_rate,
  :sent_last_24_hours)
  SENSITIVE = []
  include Aws::Structure
end

#max_send_rateFloat

The maximum number of emails that you can send per second in the current AWS Region. This value is also called your *maximum sending rate* or your *maximum TPS (transactions per second) rate*.

Returns:

  • (Float)


2856
2857
2858
2859
2860
2861
2862
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2856

class SendQuota < Struct.new(
  :max_24_hour_send,
  :max_send_rate,
  :sent_last_24_hours)
  SENSITIVE = []
  include Aws::Structure
end

#sent_last_24_hoursFloat

The number of emails sent from your Amazon Pinpoint account in the current AWS Region over the past 24 hours.

Returns:

  • (Float)


2856
2857
2858
2859
2860
2861
2862
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2856

class SendQuota < Struct.new(
  :max_24_hour_send,
  :max_send_rate,
  :sent_last_24_hours)
  SENSITIVE = []
  include Aws::Structure
end