1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteContact`](crate::operation::delete_contact::builders::DeleteContactFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`contact_list_name(impl Into<String>)`](crate::operation::delete_contact::builders::DeleteContactFluentBuilder::contact_list_name) / [`set_contact_list_name(Option<String>)`](crate::operation::delete_contact::builders::DeleteContactFluentBuilder::set_contact_list_name):<br>required: **true**<br><p>The name of the contact list from which the contact should be removed.</p><br>
    ///   - [`email_address(impl Into<String>)`](crate::operation::delete_contact::builders::DeleteContactFluentBuilder::email_address) / [`set_email_address(Option<String>)`](crate::operation::delete_contact::builders::DeleteContactFluentBuilder::set_email_address):<br>required: **true**<br><p>The contact's email address.</p><br>
    /// - On success, responds with [`DeleteContactOutput`](crate::operation::delete_contact::DeleteContactOutput)
    /// - On failure, responds with [`SdkError<DeleteContactError>`](crate::operation::delete_contact::DeleteContactError)
    pub fn delete_contact(&self) -> crate::operation::delete_contact::builders::DeleteContactFluentBuilder {
        crate::operation::delete_contact::builders::DeleteContactFluentBuilder::new(self.handle.clone())
    }
}