1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopContactStreaming`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::set_instance_id): <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
    ///   - [`contact_id(impl Into<String>)`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::contact_id) / [`set_contact_id(Option<String>)`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::set_contact_id): <p>The identifier of the contact. This is the identifier of the contact that is associated with the first interaction with the contact center.</p>
    ///   - [`streaming_id(impl Into<String>)`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::streaming_id) / [`set_streaming_id(Option<String>)`](crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::set_streaming_id): <p>The identifier of the streaming configuration enabled. </p>
    /// - On success, responds with [`StopContactStreamingOutput`](crate::operation::stop_contact_streaming::StopContactStreamingOutput)
    /// - On failure, responds with [`SdkError<StopContactStreamingError>`](crate::operation::stop_contact_streaming::StopContactStreamingError)
    pub fn stop_contact_streaming(
        &self,
    ) -> crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder {
        crate::operation::stop_contact_streaming::builders::StopContactStreamingFluentBuilder::new(
            self.handle.clone(),
        )
    }
}