Class: Aws::SES::Types::GetSendQuotaResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::GetSendQuotaResponse
- Defined in:
- gems/aws-sdk-ses/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_24_hour_send ⇒ Float
The maximum number of emails the user is allowed to send in a 24-hour interval.
-
#max_send_rate ⇒ Float
The maximum number of emails that Amazon SES can accept from the user's account per second.
-
#sent_last_24_hours ⇒ Float
The number of emails sent during the previous 24 hours.
Instance Attribute Details
#max_24_hour_send ⇒ Float
The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
1954 1955 1956 1957 1958 1959 1960 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1954 class GetSendQuotaResponse < Struct.new( :max_24_hour_send, :max_send_rate, :sent_last_24_hours) SENSITIVE = [] include Aws::Structure end |
#max_send_rate ⇒ Float
The maximum number of emails that Amazon SES can accept from the user's account per second.
1954 1955 1956 1957 1958 1959 1960 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1954 class GetSendQuotaResponse < Struct.new( :max_24_hour_send, :max_send_rate, :sent_last_24_hours) SENSITIVE = [] include Aws::Structure end |
#sent_last_24_hours ⇒ Float
The number of emails sent during the previous 24 hours.
1954 1955 1956 1957 1958 1959 1960 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1954 class GetSendQuotaResponse < Struct.new( :max_24_hour_send, :max_send_rate, :sent_last_24_hours) SENSITIVE = [] include Aws::Structure end |