Struct aws_sdk_ses::operation::create_configuration_set_tracking_options::CreateConfigurationSetTrackingOptionsInput
source · #[non_exhaustive]pub struct CreateConfigurationSetTrackingOptionsInput {
pub configuration_set_name: Option<String>,
pub tracking_options: Option<TrackingOptions>,
}
Expand description
Represents a request to create an open and click tracking option object in 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 that the tracking options should be associated with.
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 CreateConfigurationSetTrackingOptionsInput
impl CreateConfigurationSetTrackingOptionsInput
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
The name of the configuration set that the tracking options should be associated with.
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 CreateConfigurationSetTrackingOptionsInput
impl CreateConfigurationSetTrackingOptionsInput
sourcepub fn builder() -> CreateConfigurationSetTrackingOptionsInputBuilder
pub fn builder() -> CreateConfigurationSetTrackingOptionsInputBuilder
Creates a new builder-style object to manufacture CreateConfigurationSetTrackingOptionsInput
.
Trait Implementations§
source§impl Clone for CreateConfigurationSetTrackingOptionsInput
impl Clone for CreateConfigurationSetTrackingOptionsInput
source§fn clone(&self) -> CreateConfigurationSetTrackingOptionsInput
fn clone(&self) -> CreateConfigurationSetTrackingOptionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateConfigurationSetTrackingOptionsInput
impl PartialEq for CreateConfigurationSetTrackingOptionsInput
source§fn eq(&self, other: &CreateConfigurationSetTrackingOptionsInput) -> bool
fn eq(&self, other: &CreateConfigurationSetTrackingOptionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.