Struct aws_sdk_ses::operation::update_configuration_set_tracking_options::builders::UpdateConfigurationSetTrackingOptionsInputBuilder
source · #[non_exhaustive]pub struct UpdateConfigurationSetTrackingOptionsInputBuilder { /* private fields */ }Expand description
A builder for UpdateConfigurationSetTrackingOptionsInput.
Implementations§
source§impl UpdateConfigurationSetTrackingOptionsInputBuilder
impl UpdateConfigurationSetTrackingOptionsInputBuilder
sourcepub fn configuration_set_name(self, input: impl Into<String>) -> Self
pub fn configuration_set_name(self, input: impl Into<String>) -> Self
The name of the configuration set.
This field is required.sourcepub fn set_configuration_set_name(self, input: Option<String>) -> Self
pub fn set_configuration_set_name(self, input: Option<String>) -> Self
The name of the configuration set.
sourcepub fn get_configuration_set_name(&self) -> &Option<String>
pub fn get_configuration_set_name(&self) -> &Option<String>
The name of the configuration set.
sourcepub fn tracking_options(self, input: TrackingOptions) -> Self
pub fn tracking_options(self, input: TrackingOptions) -> Self
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.
This field is required.sourcepub fn set_tracking_options(self, input: Option<TrackingOptions>) -> Self
pub fn set_tracking_options(self, input: Option<TrackingOptions>) -> Self
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.
sourcepub fn get_tracking_options(&self) -> &Option<TrackingOptions>
pub fn get_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.
sourcepub fn build(
self
) -> Result<UpdateConfigurationSetTrackingOptionsInput, BuildError>
pub fn build( self ) -> Result<UpdateConfigurationSetTrackingOptionsInput, BuildError>
Consumes the builder and constructs a UpdateConfigurationSetTrackingOptionsInput.
source§impl UpdateConfigurationSetTrackingOptionsInputBuilder
impl UpdateConfigurationSetTrackingOptionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateConfigurationSetTrackingOptionsOutput, SdkError<UpdateConfigurationSetTrackingOptionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateConfigurationSetTrackingOptionsOutput, SdkError<UpdateConfigurationSetTrackingOptionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateConfigurationSetTrackingOptionsInputBuilder
impl Clone for UpdateConfigurationSetTrackingOptionsInputBuilder
source§fn clone(&self) -> UpdateConfigurationSetTrackingOptionsInputBuilder
fn clone(&self) -> UpdateConfigurationSetTrackingOptionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateConfigurationSetTrackingOptionsInputBuilder
impl Default for UpdateConfigurationSetTrackingOptionsInputBuilder
source§fn default() -> UpdateConfigurationSetTrackingOptionsInputBuilder
fn default() -> UpdateConfigurationSetTrackingOptionsInputBuilder
source§impl PartialEq for UpdateConfigurationSetTrackingOptionsInputBuilder
impl PartialEq for UpdateConfigurationSetTrackingOptionsInputBuilder
source§fn eq(&self, other: &UpdateConfigurationSetTrackingOptionsInputBuilder) -> bool
fn eq(&self, other: &UpdateConfigurationSetTrackingOptionsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateConfigurationSetTrackingOptionsInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateConfigurationSetTrackingOptionsInputBuilder
impl RefUnwindSafe for UpdateConfigurationSetTrackingOptionsInputBuilder
impl Send for UpdateConfigurationSetTrackingOptionsInputBuilder
impl Sync for UpdateConfigurationSetTrackingOptionsInputBuilder
impl Unpin for UpdateConfigurationSetTrackingOptionsInputBuilder
impl UnwindSafe for UpdateConfigurationSetTrackingOptionsInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more