Struct aws_sdk_sesv2::operation::put_configuration_set_tracking_options::PutConfigurationSetTrackingOptionsInput
source · #[non_exhaustive]pub struct PutConfigurationSetTrackingOptionsInput {
pub configuration_set_name: Option<String>,
pub custom_redirect_domain: Option<String>,
}Expand description
A request to add a custom domain for tracking open and click events to 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.
custom_redirect_domain: Option<String>The domain to use to track open and click events.
Implementations§
source§impl PutConfigurationSetTrackingOptionsInput
impl PutConfigurationSetTrackingOptionsInput
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
The name of the configuration set.
sourcepub fn custom_redirect_domain(&self) -> Option<&str>
pub fn custom_redirect_domain(&self) -> Option<&str>
The domain to use to track open and click events.
source§impl PutConfigurationSetTrackingOptionsInput
impl PutConfigurationSetTrackingOptionsInput
sourcepub fn builder() -> PutConfigurationSetTrackingOptionsInputBuilder
pub fn builder() -> PutConfigurationSetTrackingOptionsInputBuilder
Creates a new builder-style object to manufacture PutConfigurationSetTrackingOptionsInput.
Trait Implementations§
source§impl Clone for PutConfigurationSetTrackingOptionsInput
impl Clone for PutConfigurationSetTrackingOptionsInput
source§fn clone(&self) -> PutConfigurationSetTrackingOptionsInput
fn clone(&self) -> PutConfigurationSetTrackingOptionsInput
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 PutConfigurationSetTrackingOptionsInput
impl PartialEq for PutConfigurationSetTrackingOptionsInput
source§fn eq(&self, other: &PutConfigurationSetTrackingOptionsInput) -> bool
fn eq(&self, other: &PutConfigurationSetTrackingOptionsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutConfigurationSetTrackingOptionsInput
Auto Trait Implementations§
impl RefUnwindSafe for PutConfigurationSetTrackingOptionsInput
impl Send for PutConfigurationSetTrackingOptionsInput
impl Sync for PutConfigurationSetTrackingOptionsInput
impl Unpin for PutConfigurationSetTrackingOptionsInput
impl UnwindSafe for PutConfigurationSetTrackingOptionsInput
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.