#[non_exhaustive]pub struct UpdateContactInputBuilder { /* private fields */ }Expand description
A builder for UpdateContactInput.
Implementations§
source§impl UpdateContactInputBuilder
impl UpdateContactInputBuilder
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.
This field is required.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.
This field is required.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 topic_preferences.
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.
sourcepub fn build(self) -> Result<UpdateContactInput, BuildError>
pub fn build(self) -> Result<UpdateContactInput, BuildError>
Consumes the builder and constructs a UpdateContactInput.
source§impl UpdateContactInputBuilder
impl UpdateContactInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateContactOutput, SdkError<UpdateContactError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateContactOutput, SdkError<UpdateContactError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateContactInputBuilder
impl Clone for UpdateContactInputBuilder
source§fn clone(&self) -> UpdateContactInputBuilder
fn clone(&self) -> UpdateContactInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateContactInputBuilder
impl Debug for UpdateContactInputBuilder
source§impl Default for UpdateContactInputBuilder
impl Default for UpdateContactInputBuilder
source§fn default() -> UpdateContactInputBuilder
fn default() -> UpdateContactInputBuilder
source§impl PartialEq for UpdateContactInputBuilder
impl PartialEq for UpdateContactInputBuilder
source§fn eq(&self, other: &UpdateContactInputBuilder) -> bool
fn eq(&self, other: &UpdateContactInputBuilder) -> bool
self and other values to be equal, and is used
by ==.