Struct aws_sdk_ses::operation::update_configuration_set_tracking_options::UpdateConfigurationSetTrackingOptionsInput
source · #[non_exhaustive]pub struct UpdateConfigurationSetTrackingOptionsInput {
pub configuration_set_name: Option<String>,
pub tracking_options: Option<TrackingOptions>,
}
Expand description
Represents a request to update the tracking options for a configuration set.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
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.
tracking_options: Option<TrackingOptions>
A domain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.
For more information, see Configuring Custom Domains to Handle Open and Click Tracking in the Amazon SES Developer Guide.
Implementations§
source§impl UpdateConfigurationSetTrackingOptionsInput
impl UpdateConfigurationSetTrackingOptionsInput
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
The name of the configuration set.
sourcepub fn tracking_options(&self) -> Option<&TrackingOptions>
pub fn tracking_options(&self) -> Option<&TrackingOptions>
A domain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.
For more information, see Configuring Custom Domains to Handle Open and Click Tracking in the Amazon SES Developer Guide.
source§impl UpdateConfigurationSetTrackingOptionsInput
impl UpdateConfigurationSetTrackingOptionsInput
sourcepub fn builder() -> UpdateConfigurationSetTrackingOptionsInputBuilder
pub fn builder() -> UpdateConfigurationSetTrackingOptionsInputBuilder
Creates a new builder-style object to manufacture UpdateConfigurationSetTrackingOptionsInput
.
Trait Implementations§
source§impl Clone for UpdateConfigurationSetTrackingOptionsInput
impl Clone for UpdateConfigurationSetTrackingOptionsInput
source§fn clone(&self) -> UpdateConfigurationSetTrackingOptionsInput
fn clone(&self) -> UpdateConfigurationSetTrackingOptionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateConfigurationSetTrackingOptionsInput
impl PartialEq for UpdateConfigurationSetTrackingOptionsInput
source§fn eq(&self, other: &UpdateConfigurationSetTrackingOptionsInput) -> bool
fn eq(&self, other: &UpdateConfigurationSetTrackingOptionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.