Struct aws_sdk_ses::operation::get_send_quota::GetSendQuotaOutput
source · #[non_exhaustive]pub struct GetSendQuotaOutput {
pub max24_hour_send: f64,
pub max_send_rate: f64,
pub sent_last24_hours: f64,
/* private fields */
}Expand description
Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.
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 the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
max_send_rate: f64The maximum number of emails that Amazon SES can accept from the user's account per second.
The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate.
sent_last24_hours: f64The number of emails sent during the previous 24 hours.
Implementations§
source§impl GetSendQuotaOutput
impl GetSendQuotaOutput
sourcepub fn max24_hour_send(&self) -> f64
pub fn max24_hour_send(&self) -> f64
The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
sourcepub fn max_send_rate(&self) -> f64
pub fn max_send_rate(&self) -> f64
The maximum number of emails that Amazon SES can accept from the user's account per second.
The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate.
sourcepub fn sent_last24_hours(&self) -> f64
pub fn sent_last24_hours(&self) -> f64
The number of emails sent during the previous 24 hours.
source§impl GetSendQuotaOutput
impl GetSendQuotaOutput
sourcepub fn builder() -> GetSendQuotaOutputBuilder
pub fn builder() -> GetSendQuotaOutputBuilder
Creates a new builder-style object to manufacture GetSendQuotaOutput.
Trait Implementations§
source§impl Clone for GetSendQuotaOutput
impl Clone for GetSendQuotaOutput
source§fn clone(&self) -> GetSendQuotaOutput
fn clone(&self) -> GetSendQuotaOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetSendQuotaOutput
impl Debug for GetSendQuotaOutput
source§impl PartialEq for GetSendQuotaOutput
impl PartialEq for GetSendQuotaOutput
source§fn eq(&self, other: &GetSendQuotaOutput) -> bool
fn eq(&self, other: &GetSendQuotaOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetSendQuotaOutput
impl RequestId for GetSendQuotaOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.