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 [`GetStreamingSession`](crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`session_id(impl Into<String>)`](crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder::session_id) / [`set_session_id(Option<String>)`](crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder::set_session_id):<br>required: **true**<br><p>The streaming session ID.</p><br>
    ///   - [`studio_id(impl Into<String>)`](crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder::studio_id) / [`set_studio_id(Option<String>)`](crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder::set_studio_id):<br>required: **true**<br><p>The studio ID. </p><br>
    /// - On success, responds with [`GetStreamingSessionOutput`](crate::operation::get_streaming_session::GetStreamingSessionOutput) with field(s):
    ///   - [`session(Option<StreamingSession>)`](crate::operation::get_streaming_session::GetStreamingSessionOutput::session): <p>The session.</p>
    /// - On failure, responds with [`SdkError<GetStreamingSessionError>`](crate::operation::get_streaming_session::GetStreamingSessionError)
    pub fn get_streaming_session(&self) -> crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder {
        crate::operation::get_streaming_session::builders::GetStreamingSessionFluentBuilder::new(self.handle.clone())
    }
}