Struct aws_sdk_sesv2::types::builders::SendQuotaBuilder
source · #[non_exhaustive]pub struct SendQuotaBuilder { /* private fields */ }Expand description
A builder for SendQuota.
Implementations§
source§impl SendQuotaBuilder
impl SendQuotaBuilder
sourcepub fn max24_hour_send(self, input: f64) -> Self
pub fn max24_hour_send(self, input: f64) -> Self
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 set_max24_hour_send(self, input: Option<f64>) -> Self
pub fn set_max24_hour_send(self, input: Option<f64>) -> Self
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, input: f64) -> Self
pub fn max_send_rate(self, input: f64) -> Self
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 set_max_send_rate(self, input: Option<f64>) -> Self
pub fn set_max_send_rate(self, input: Option<f64>) -> Self
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, input: f64) -> Self
pub fn sent_last24_hours(self, input: f64) -> Self
The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the past 24 hours.
sourcepub fn set_sent_last24_hours(self, input: Option<f64>) -> Self
pub fn set_sent_last24_hours(self, input: Option<f64>) -> Self
The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the past 24 hours.
Trait Implementations§
source§impl Clone for SendQuotaBuilder
impl Clone for SendQuotaBuilder
source§fn clone(&self) -> SendQuotaBuilder
fn clone(&self) -> SendQuotaBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SendQuotaBuilder
impl Debug for SendQuotaBuilder
source§impl Default for SendQuotaBuilder
impl Default for SendQuotaBuilder
source§fn default() -> SendQuotaBuilder
fn default() -> SendQuotaBuilder
source§impl PartialEq<SendQuotaBuilder> for SendQuotaBuilder
impl PartialEq<SendQuotaBuilder> for SendQuotaBuilder
source§fn eq(&self, other: &SendQuotaBuilder) -> bool
fn eq(&self, other: &SendQuotaBuilder) -> bool
self and other values to be equal, and is used
by ==.