pub struct PutConfigurationSetReputationOptionsRequest {
pub configuration_set_name: String,
pub reputation_metrics_enabled: Option<bool>,
}Expand description
A request to enable or disable tracking of reputation metrics for a configuration set.
Fields§
§configuration_set_name: StringThe name of the configuration set that you want to enable or disable reputation metric tracking for.
reputation_metrics_enabled: Option<bool>If true, tracking of reputation metrics is enabled for the configuration set. If false, tracking of reputation metrics is disabled for the configuration set.
Trait Implementations§
Source§impl Clone for PutConfigurationSetReputationOptionsRequest
impl Clone for PutConfigurationSetReputationOptionsRequest
Source§fn clone(&self) -> PutConfigurationSetReputationOptionsRequest
fn clone(&self) -> PutConfigurationSetReputationOptionsRequest
Returns a duplicate 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 Default for PutConfigurationSetReputationOptionsRequest
impl Default for PutConfigurationSetReputationOptionsRequest
Source§fn default() -> PutConfigurationSetReputationOptionsRequest
fn default() -> PutConfigurationSetReputationOptionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutConfigurationSetReputationOptionsRequest
impl PartialEq for PutConfigurationSetReputationOptionsRequest
Source§fn eq(&self, other: &PutConfigurationSetReputationOptionsRequest) -> bool
fn eq(&self, other: &PutConfigurationSetReputationOptionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutConfigurationSetReputationOptionsRequest
Auto Trait Implementations§
impl Freeze for PutConfigurationSetReputationOptionsRequest
impl RefUnwindSafe for PutConfigurationSetReputationOptionsRequest
impl Send for PutConfigurationSetReputationOptionsRequest
impl Sync for PutConfigurationSetReputationOptionsRequest
impl Unpin for PutConfigurationSetReputationOptionsRequest
impl UnwindSafe for PutConfigurationSetReputationOptionsRequest
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