1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateContactList`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`contact_list_name(impl Into<String>)`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::contact_list_name) / [`set_contact_list_name(Option<String>)`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::set_contact_list_name):<br>required: **true**<br><p>The name of the contact list.</p><br>
    ///   - [`topics(Topic)`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::topics) / [`set_topics(Option<Vec::<Topic>>)`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::set_topics):<br>required: **false**<br><p>An interest group, theme, or label within a list. A contact list can have multiple topics.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::set_description):<br>required: **false**<br><p>A description of what the contact list is about.</p><br>
    /// - On success, responds with [`UpdateContactListOutput`](crate::operation::update_contact_list::UpdateContactListOutput)
    /// - On failure, responds with [`SdkError<UpdateContactListError>`](crate::operation::update_contact_list::UpdateContactListError)
    pub fn update_contact_list(&self) -> crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder {
        crate::operation::update_contact_list::builders::UpdateContactListFluentBuilder::new(self.handle.clone())
    }
}