1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopContact`](crate::operation::stop_contact::builders::StopContactFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`contact_id(impl Into<String>)`](crate::operation::stop_contact::builders::StopContactFluentBuilder::contact_id) / [`set_contact_id(Option<String>)`](crate::operation::stop_contact::builders::StopContactFluentBuilder::set_contact_id): <p>The ID of the contact.</p>
    ///   - [`instance_id(impl Into<String>)`](crate::operation::stop_contact::builders::StopContactFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::stop_contact::builders::StopContactFluentBuilder::set_instance_id): <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
    /// - On success, responds with [`StopContactOutput`](crate::operation::stop_contact::StopContactOutput)
    /// - On failure, responds with [`SdkError<StopContactError>`](crate::operation::stop_contact::StopContactError)
    pub fn stop_contact(
        &self,
    ) -> crate::operation::stop_contact::builders::StopContactFluentBuilder {
        crate::operation::stop_contact::builders::StopContactFluentBuilder::new(self.handle.clone())
    }
}