Struct aws_sdk_sesv2::operation::put_configuration_set_reputation_options::PutConfigurationSetReputationOptionsInput
source · #[non_exhaustive]pub struct PutConfigurationSetReputationOptionsInput {
pub configuration_set_name: Option<String>,
pub reputation_metrics_enabled: Option<bool>,
}Expand description
A request to enable or disable tracking of reputation metrics for a configuration set.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.configuration_set_name: Option<String>The name of the configuration set.
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.
Implementations§
source§impl PutConfigurationSetReputationOptionsInput
impl PutConfigurationSetReputationOptionsInput
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
The name of the configuration set.
sourcepub fn reputation_metrics_enabled(&self) -> Option<bool>
pub fn reputation_metrics_enabled(&self) -> 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.
source§impl PutConfigurationSetReputationOptionsInput
impl PutConfigurationSetReputationOptionsInput
sourcepub fn builder() -> PutConfigurationSetReputationOptionsInputBuilder
pub fn builder() -> PutConfigurationSetReputationOptionsInputBuilder
Creates a new builder-style object to manufacture PutConfigurationSetReputationOptionsInput.
Trait Implementations§
source§impl Clone for PutConfigurationSetReputationOptionsInput
impl Clone for PutConfigurationSetReputationOptionsInput
source§fn clone(&self) -> PutConfigurationSetReputationOptionsInput
fn clone(&self) -> PutConfigurationSetReputationOptionsInput
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 PartialEq for PutConfigurationSetReputationOptionsInput
impl PartialEq for PutConfigurationSetReputationOptionsInput
source§fn eq(&self, other: &PutConfigurationSetReputationOptionsInput) -> bool
fn eq(&self, other: &PutConfigurationSetReputationOptionsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutConfigurationSetReputationOptionsInput
Auto Trait Implementations§
impl RefUnwindSafe for PutConfigurationSetReputationOptionsInput
impl Send for PutConfigurationSetReputationOptionsInput
impl Sync for PutConfigurationSetReputationOptionsInput
impl Unpin for PutConfigurationSetReputationOptionsInput
impl UnwindSafe for PutConfigurationSetReputationOptionsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.