Struct aws_sdk_ses::operation::get_send_quota::GetSendQuotaOutput
source · #[non_exhaustive]pub struct GetSendQuotaOutput { /* 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.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetSendQuotaOutput
impl Debug for GetSendQuotaOutput
source§impl PartialEq<GetSendQuotaOutput> for GetSendQuotaOutput
impl PartialEq<GetSendQuotaOutput> for GetSendQuotaOutput
source§fn eq(&self, other: &GetSendQuotaOutput) -> bool
fn eq(&self, other: &GetSendQuotaOutput) -> bool
This method tests for
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>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetSendQuotaOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetSendQuotaOutput
impl Send for GetSendQuotaOutput
impl Sync for GetSendQuotaOutput
impl Unpin for GetSendQuotaOutput
impl UnwindSafe for GetSendQuotaOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more