pub struct UpdateContactFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateContact.
Updates a contact's preferences for a list. It is not necessary to specify all existing topic preferences in the TopicPreferences object, just the ones that need updating.
Implementations§
source§impl UpdateContactFluentBuilder
impl UpdateContactFluentBuilder
sourcepub fn as_input(&self) -> &UpdateContactInputBuilder
pub fn as_input(&self) -> &UpdateContactInputBuilder
Access the UpdateContact as a reference.
sourcepub async fn send(
self
) -> Result<UpdateContactOutput, SdkError<UpdateContactError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateContactOutput, SdkError<UpdateContactError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateContactOutput, UpdateContactError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateContactOutput, UpdateContactError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn contact_list_name(self, input: impl Into<String>) -> Self
pub fn contact_list_name(self, input: impl Into<String>) -> Self
The name of the contact list.
sourcepub fn set_contact_list_name(self, input: Option<String>) -> Self
pub fn set_contact_list_name(self, input: Option<String>) -> Self
The name of the contact list.
sourcepub fn get_contact_list_name(&self) -> &Option<String>
pub fn get_contact_list_name(&self) -> &Option<String>
The name of the contact list.
sourcepub fn email_address(self, input: impl Into<String>) -> Self
pub fn email_address(self, input: impl Into<String>) -> Self
The contact's email address.
sourcepub fn set_email_address(self, input: Option<String>) -> Self
pub fn set_email_address(self, input: Option<String>) -> Self
The contact's email address.
sourcepub fn get_email_address(&self) -> &Option<String>
pub fn get_email_address(&self) -> &Option<String>
The contact's email address.
sourcepub fn topic_preferences(self, input: TopicPreference) -> Self
pub fn topic_preferences(self, input: TopicPreference) -> Self
Appends an item to TopicPreferences.
To override the contents of this collection use set_topic_preferences.
The contact's preference for being opted-in to or opted-out of a topic.
sourcepub fn set_topic_preferences(self, input: Option<Vec<TopicPreference>>) -> Self
pub fn set_topic_preferences(self, input: Option<Vec<TopicPreference>>) -> Self
The contact's preference for being opted-in to or opted-out of a topic.
sourcepub fn get_topic_preferences(&self) -> &Option<Vec<TopicPreference>>
pub fn get_topic_preferences(&self) -> &Option<Vec<TopicPreference>>
The contact's preference for being opted-in to or opted-out of a topic.
sourcepub fn unsubscribe_all(self, input: bool) -> Self
pub fn unsubscribe_all(self, input: bool) -> Self
A boolean value status noting if the contact is unsubscribed from all contact list topics.
sourcepub fn set_unsubscribe_all(self, input: Option<bool>) -> Self
pub fn set_unsubscribe_all(self, input: Option<bool>) -> Self
A boolean value status noting if the contact is unsubscribed from all contact list topics.
sourcepub fn get_unsubscribe_all(&self) -> &Option<bool>
pub fn get_unsubscribe_all(&self) -> &Option<bool>
A boolean value status noting if the contact is unsubscribed from all contact list topics.
sourcepub fn attributes_data(self, input: impl Into<String>) -> Self
pub fn attributes_data(self, input: impl Into<String>) -> Self
The attribute data attached to a contact.
sourcepub fn set_attributes_data(self, input: Option<String>) -> Self
pub fn set_attributes_data(self, input: Option<String>) -> Self
The attribute data attached to a contact.
sourcepub fn get_attributes_data(&self) -> &Option<String>
pub fn get_attributes_data(&self) -> &Option<String>
The attribute data attached to a contact.
Trait Implementations§
source§impl Clone for UpdateContactFluentBuilder
impl Clone for UpdateContactFluentBuilder
source§fn clone(&self) -> UpdateContactFluentBuilder
fn clone(&self) -> UpdateContactFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more