Struct aws_sdk_sesv2::types::SendQuota
source · #[non_exhaustive]pub struct SendQuota {
pub max24_hour_send: f64,
pub max_send_rate: f64,
pub sent_last24_hours: f64,
}Expand description
An object that contains information about the per-day and per-second sending limits for your Amazon SES account in the current Amazon Web Services Region.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max24_hour_send: f64The maximum number of emails that you can send in the current Amazon Web Services Region over a 24-hour period. A value of -1 signifies an unlimited quota. (This value is also referred to as your sending quota.)
max_send_rate: f64The maximum number of emails that you can send per second in the current Amazon Web Services Region. This value is also called your maximum sending rate or your maximum TPS (transactions per second) rate.
sent_last24_hours: f64The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the past 24 hours.
Implementations§
source§impl SendQuota
impl SendQuota
sourcepub fn max24_hour_send(&self) -> f64
pub fn max24_hour_send(&self) -> f64
The maximum number of emails that you can send in the current Amazon Web Services Region over a 24-hour period. A value of -1 signifies an unlimited quota. (This value is also referred to as your sending quota.)
sourcepub fn max_send_rate(&self) -> f64
pub fn max_send_rate(&self) -> f64
The maximum number of emails that you can send per second in the current Amazon Web Services Region. This value is also called your maximum sending rate or your maximum TPS (transactions per second) rate.
sourcepub fn sent_last24_hours(&self) -> f64
pub fn sent_last24_hours(&self) -> f64
The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the past 24 hours.