[−][src]Struct rusoto_ses::ReputationOptions
Contains information about the reputation settings for a configuration set.
Fields
last_fresh_start: Option<String>
The date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
When you disable email sending for a configuration set using UpdateConfigurationSetSendingEnabled and later re-enable it, the reputation metrics for the configuration set (but not for the entire Amazon SES account) are reset.
If email sending for the configuration set has never been disabled and later re-enabled, the value of this attribute is null
.
reputation_metrics_enabled: Option<bool>
Describes whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch.
If the value is true
, reputation metrics are published. If the value is false
, reputation metrics are not published. The default value is false
.
sending_enabled: Option<bool>
Describes whether email sending is enabled or disabled for the configuration set. If the value is true
, then Amazon SES will send emails that use the configuration set. If the value is false
, Amazon SES will not send emails that use the configuration set. The default value is true
. You can change this setting using UpdateConfigurationSetSendingEnabled.
Trait Implementations
impl PartialEq<ReputationOptions> for ReputationOptions
[src]
fn eq(&self, other: &ReputationOptions) -> bool
[src]
fn ne(&self, other: &ReputationOptions) -> bool
[src]
impl Default for ReputationOptions
[src]
fn default() -> ReputationOptions
[src]
impl Clone for ReputationOptions
[src]
fn clone(&self) -> ReputationOptions
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ReputationOptions
[src]
Auto Trait Implementations
impl Send for ReputationOptions
impl Sync for ReputationOptions
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self